home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / PSPad editor 4.5.4 build 2356 beta / pspad454inst_en.exe / {app} / Context / PHP.DEF < prev    next >
Text File  |  2007-12-28  |  530KB  |  13,644 lines

  1. ; Tento soubor obsahuje makra programu PSPad pro PHP
  2. ;
  3. ;; PSPad code template for PHP
  4. ;; Author: Krystof Slaby
  5. ;; E-mail: krystof.slaby@seznam.cz
  6. ;; Update: $LastChangedDate: 2003-12-08 00:06:21 +0100 (Mon, 08 Dec 2003) $
  7. ;; Revision: $LastChangedRevision: 54 $
  8. ;
  9. ; User-defined templates patri na konec souboru.
  10. ;
  11. ; VERSION 1
  12. ; autor: Frantisek Blaha  F.Blaha@WorldOnline.cz
  13. ; podklady ziskany z puvodniho PHP manualu vydaneho Official PHP Documentation Group dne 2.9.2001
  14. ; posledni revize: 23.9.2001
  15. ;
  16. ; VERSION 1.1
  17. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  18. ; pridano: control structures, reserved words, declarations
  19. ; datum modifikace: 26.1.2003
  20. ; TODO: refine due to last php manual version
  21. ;
  22. ; VERSION 1.2
  23. ; Karel Pavelka  webjob@seznam.cz
  24. ; datum modifikace: 11.5.2003
  25. ; dalsi preklad a doplneni funkci pro MySQL z manualu PHP
  26. ;
  27. ; VERSION 1.3
  28. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  29. ; datum: 2003-06-30
  30. ; popis:
  31. ;     seznam funkci podle posledniho php manualu (generuje se z xml verze php reference manual)
  32. ;     PEAR coding standards compliant
  33. ;     u funkci odstraneny stredniky
  34. ;
  35. ; VERSION 1.4
  36. ; modifikace: Krystof Slaby (krystof.slaby@seznam.cz)
  37. ; datum: 2003-11-24
  38. ; popis:
  39. ;     seznam funkci podle posledniho php manualu
  40. ;     nektere control structures jsou nyni interaktivni
  41. ;
  42. ;
  43. [Macro definition]
  44. %name%=@C name:,,,,
  45. %description%=@C description:,,,,
  46. %param1%=@C parameter:,,,,
  47. %param2%=@C parameter:,", ",,,
  48. %param3%=@C parameter:,", ",,,
  49. %param4%=@C parameter:,", ",,,
  50. %param5%=@C parameter:,", ",,,
  51. %extends%=@C extends:,,,,
  52. %type%=@C type:,,,mixed;boolean;number;integer;float;string;array;object;resource;NULL;callback;void,
  53. %return%=@C returns:,,void,mixed;boolean;number;integer;float;string;array;object;resource;NULL;callback;void,
  54. %type1%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  55. %type2%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  56. %type3%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  57. %type4%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  58. %type5%=@C type:,,,;boolean;integer;float;string;array;object;resource;callback,
  59. %sourcefile%=@O file:,,,PHP files (*.php;*.inc)|*.php;*.inc,'
  60. %package%=@C package:,,,,
  61. %access%=@C access:,,public,public;private,
  62. %static%=@K static:,@static
  63. %abstract%=@K abstract:,@abstract
  64. %final%=@K final:,@final
  65. ;
  66. [  |G ned∞litelnß mezera]*Shift+Ctrl+Space
  67.  
  68. ;
  69. ; -----------------------------------------------------------------------------
  70. ; comments
  71. ; -----------------------------------------------------------------------------
  72. [comment | komentß° /* ... */ ]
  73. /*
  74.     º|
  75. */
  76. ;
  77. ;
  78. ; -----------------------------------------------------------------------------
  79. ; (X)HTML text entities
  80. ; -----------------------------------------------------------------------------
  81. [  | ned∞litelnß mezera]*Ctrl+Shift+Space
  82.  
  83. [& | ampersand]
  84. &
  85. [® | registered]
  86. ®
  87. [© | copyright]
  88. ©
  89. [> | znak v∞tÜφ ne₧ ">"]
  90. >
  91. [< | znak manÜφ ne₧ "<"]
  92. <
  93. [" | uvozovky]
  94. "
  95. [' | apostrof]
  96. '
  97. [br | linebreak]*Ctrl+Enter
  98. <br />
  99. ;
  100. ;
  101. ; -----------------------------------------------------------------------------
  102. ; control structures
  103. ; -----------------------------------------------------------------------------
  104. [php | php escaping PI <?php ... ?>]
  105. <?php
  106.     º|
  107. ?>
  108. [if | if statement]
  109. if (|) {
  110.     º
  111. }
  112. [elseif | elseif statement]
  113. elseif (|) {
  114.     º
  115. }
  116. [else | else statement]
  117. else {
  118.     º|
  119. }
  120. [while | while statement]
  121. while (|) {
  122.     º
  123. }
  124. [dowhile | do .. while statement]
  125. do {
  126.     º|
  127. } while ();
  128. [for | for statement]
  129. for (|; ; ) {
  130.     º
  131. }
  132. [foreach | foreach statement]
  133. foreach (| as $key=>$value) {
  134.     º
  135. }
  136. [break | break statement]
  137. break;
  138. [continue | continue statement]
  139. continue;
  140. [switch | switch statement]
  141. switch (|) {
  142. default:
  143.     º
  144.     break;
  145. }
  146. [case | switch case statement]
  147. case |:
  148.     break;
  149. [declare | declare statement]
  150. declare (ticks=|) {
  151.     º
  152. }
  153. [return | return statement]
  154. return |;
  155. [require | require statement]
  156. require %sourcefile%|;
  157. [include | include statement]
  158. include %sourcefile%|;
  159. [require_once | require_once statement]
  160. require_once %sourcefile%|;
  161. [include_once | include_once statement]
  162. include_once %sourcefile%|;
  163. [function | function declaration]*Ctrl+Alt+Shift+F
  164. function %name%(%param1%%param2%%param3%%param4%%param5%)
  165. { // BEGIN function %name%
  166.     º|
  167. } // END function %name%
  168. [class | class declaration]
  169. class %name%
  170. { // BEGIN class %name%
  171.     // variables
  172.     var $|;
  173.  
  174.     // constructor
  175.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  176.     { // BEGIN constructor
  177.         º
  178.     } // END constructor
  179. } // END class %name%
  180.  
  181. [class_extends | extending class declaration]*Ctrl+Alt+Shift+C
  182. class %name% extends %extends%
  183. {
  184.     // variables
  185.     var $|;
  186.  
  187.     // constructor
  188.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  189.     { // BEGIN constructor
  190.         º
  191.         return $this->%extends%(%param1%%param2%%param3%%param4%%param5%);
  192.     } // END constructor
  193. } // END class %name%
  194.  
  195. [method | method declaration]*Ctrl+Alt+Shift+M
  196. function %name%(%param1%%param2%%param3%%param4%%param5%)
  197. { // BEGIN method %name%
  198.     º|
  199. } // END method %name%
  200. ;
  201. ;
  202. ; -----------------------------------------------------------------------------
  203. ; PEAR compliant declarations
  204. ; -----------------------------------------------------------------------------
  205. [class_PEAR | class declaration PEAR compliant]
  206. // =============================================================================
  207. /**
  208.  * Singleline description of class %name%.
  209.  *
  210.  * Multi line
  211.  * description
  212.  * of class %name%.
  213.  *
  214.  * @author %FullName% <%Email%>
  215.  * @package %package%
  216.  * @version 0.1
  217.  * %static% %abstract%
  218.  */
  219. class %name% extends %extends%
  220. // =============================================================================
  221. { // BEGIN class %name%
  222.  
  223.     |
  224.  
  225.     // -------------------------------------------------------------------------
  226.     /**
  227.      * Constructor
  228.      *
  229.      * @param %type1% %param1%
  230.      * @param %type2% %param2%
  231.      * @param %type3% %param3%
  232.      * @param %type4% %param4%
  233.      * @param %type5% %param5%
  234.      * @return object %name% new %name% object
  235.      */
  236.     function %name%(%param1%%param2%%param3%%param4%%param5%)
  237.     // -------------------------------------------------------------------------
  238.     { // BEGIN constructor
  239.         return $this->%extends%(%param1%%param2%%param3%%param4%%param5%);
  240.     } // END constructor
  241.  
  242. } // END class
  243.  
  244. [method_PEAR | method declaration PEAR compliant]
  245. // -------------------------------------------------------------------------
  246. /**
  247.  * Single line description of method %name%.
  248.  *
  249.  * Multi line
  250.  * description
  251.  * of method %name%.
  252.  *
  253.  * @param %type1% %param1%
  254.  * @param %type2% %param2%
  255.  * @param %type3% %param3%
  256.  * @param %type4% %param4%
  257.  * @param %type5% %param5%
  258.  * @return %return%
  259.  * %static% %abstract% %final%
  260.  */
  261. function %name%(%param1%%param2%%param3%%param4%%param5%)
  262. // -------------------------------------------------------------------------
  263. { // BEGIN method %name%
  264.     |
  265. } // END method %name%
  266.  
  267. [function_PEAR | function declaration PEAR compliant]
  268. // -------------------------------------------------------------------------
  269. /**
  270.  * Single line description of function %name%.
  271.  *
  272.  * Multi line
  273.  * description
  274.  * of function %name%.
  275.  *
  276.  * @param %type1% %param1%
  277.  * @param %type2% %param2%
  278.  * @param %type3% %param3%
  279.  * @param %type4% %param4%
  280.  * @param %type5% %param5%
  281.  * @return %return%
  282.  */
  283. function %name%(%param1%%param2%%param3%%param4%%param5%)
  284. // -------------------------------------------------------------------------
  285. { // BEGIN function %name%
  286.     |
  287. } // END function %name%
  288.  
  289. [variable_PEAR | variable declaration PEAR compliant]
  290. /**
  291.  * variable %name%
  292.  * @var %type% %description%|
  293.  */
  294. var $%name%;
  295. ;
  296. ;
  297. ; -----------------------------------------------------------------------------
  298. ; miscelanous functions and pseudo-functions
  299. ; -----------------------------------------------------------------------------
  300. [connection_aborted | Returns TRUE if client disconnected]
  301. connection_aborted()|
  302. [connection_status | Returns connection status bitfield]
  303. connection_status()|
  304. [constant | Returns the value of a constant]
  305. constant(|string name)
  306. [define | Defines a named constant]
  307. define(|string name, mixed value [, bool case_insensitive])
  308. [defined | Checks whether a given named constant exists]
  309. defined(|string name)
  310. [die | Output a message and terminate the current script]
  311. die(|)
  312. [eval | Evaluate a string as PHP code]
  313. eval(|string code_str)
  314. [exit | Output a message and terminate the current script]
  315. exit(|int/string status)
  316. [get_browser | Tells what the user's browser is capable of]
  317. get_browser(|[string user_agent])
  318. [highlight_file | Syntax highlighting of a file]
  319. highlight_file(|string filename [, bool return])
  320. [highlight_string | Syntax highlighting of a string]
  321. highlight_string(|string str [, bool return])
  322. [ignore_user_abort | Set whether a client disconnect should abort script execution]
  323. ignore_user_abort(|[int setting])
  324. [pack | Pack data into binary string]
  325. pack(|string format [, mixed args])
  326. [show_source | Syntax highlighting of a file]
  327. show_source(|string filename [, bool return])
  328. [sleep | Delay execution]
  329. sleep(|int seconds)
  330. [uniqid | Generate a unique ID]
  331. uniqid(|string prefix [, bool lcg])
  332. [unpack | Unpack data from binary string]
  333. unpack(|string format, string data)
  334. [usleep | Delay execution in microseconds]
  335. usleep(|int micro_seconds)
  336. [echo | Outputs all arguments]*Ctrl+Alt+Shift+E
  337. echo º|;
  338. [print | Outputs argument]*Ctrl+Alt+Shift+P
  339. print º|;
  340. ;
  341. ;
  342. ; -----------------------------------------------------------------------------
  343. ; functions
  344. ; -----------------------------------------------------------------------------
  345. ;; -----------------------------------------------------------------------------
  346. ; Apache - Apache-specific Functions
  347. ; -----------------------------------------------------------------------------
  348. [apache_child_terminate | Terminate apache process after this request, returns bool]
  349. apache_child_terminate()|
  350. [apache_get_version | Fetch Apache version, returns string]
  351. apache_get_version()|
  352. [apache_lookup_uri | Perform a partial request for the specified URI and return all info about it, returns object]
  353. apache_lookup_uri(|string filename)
  354. [apache_note | Get and set apache request notes, returns string]
  355. apache_note(|string note_name, [string note_value])
  356. [apache_request_headers | Fetch all HTTP request headers, returns array]
  357. apache_request_headers()|
  358. [apache_response_headers | Fetch all HTTP response headers, returns array]
  359. apache_response_headers()|
  360. [apache_setenv | Set an Apache subprocess_env variable, returns int]
  361. apache_setenv(|string variable, string value, [bool walk_to_top])
  362. [ascii2ebcdic | Translate string from ASCII to EBCDIC, returns int]
  363. ascii2ebcdic(|string ascii_str)
  364. [ebcdic2ascii | Translate string from EBCDIC to ASCII, returns int]
  365. ebcdic2ascii(|string ebcdic_str)
  366. [getallheaders | Fetch all HTTP request headers, returns array]
  367. getallheaders()|
  368. [virtual | Perform an Apache sub-request, returns int]
  369. virtual(|string filename)
  370. ; -----------------------------------------------------------------------------
  371. ; Arrays - Array Functions
  372. ; -----------------------------------------------------------------------------
  373. [array_change_key_case | Returns an array with all string keys lowercased or uppercased, returns array]
  374. array_change_key_case(|array input, [int case])
  375. [array_chunk | Split an array into chunks, returns array]
  376. array_chunk(|array input, int size, [bool preserve_keys])
  377. [array_combine | Creates an array by using one array for keys and another for its values, returns array]
  378. array_combine(|array keys, array values)
  379. [array_count_values | Counts all the values of an array, returns array]
  380. array_count_values(|array input)
  381. [array_diff_assoc | Computes the difference of arrays with additional index check, returns array]
  382. array_diff_assoc(|array array1, array array2, [array ...])
  383. [array_diff_uassoc | Computes the difference of arrays with additional index check which is performed by a user supplied callback function., returns array]
  384. array_diff_assoc(|array array1, array array2, [array ...], callback key_compare_func)
  385. [array_diff | Computes the difference of arrays, returns array]
  386. array_diff(|array array1, array array2, [array ...])
  387. [array_fill | Fill an array with values, returns array]
  388. array_fill(|int start_index, int num, mixed value)
  389. [array_filter | Filters elements of an array using a callback function, returns array]
  390. array_filter(|array input, [callback callback])
  391. [array_flip | Exchanges all keys with their associated values in an array, returns array]
  392. array_flip(|array trans)
  393. [array_intersect_assoc | Computes the intersection of arrays with additional index check, returns array]
  394. array_intersect_assoc(|array array1, array array2, [array ...])
  395. [array_intersect | Computes the intersection of arrays, returns array]
  396. array_intersect(|array array1, array array2, [array ...])
  397. [array_key_exists | Checks if the given key or index exists in the array, returns bool]
  398. array_key_exists(|mixed key, array search)
  399. [array_keys | Return all the keys of an array, returns array]
  400. array_keys(|array input, [mixed search_value])
  401. [array_map | Applies the callback to the elements of the given arrays, returns array]
  402. array_map(|mixed callback, array arr1, [array ...])
  403. [array_merge_recursive | Merge two or more arrays recursively, returns array]
  404. array_merge_recursive(|array array1, array array2, [array ...])
  405. [array_merge | Merge two or more arrays, returns array]
  406. array_merge(|array array1, array array2, [array ...])
  407. [array_multisort | Sort multiple or multi-dimensional arrays, returns bool]
  408. array_multisort(|array ar1, [mixed arg], [mixed ...], [array ...])
  409. [array_pad | Pad array to the specified length with a value, returns array]
  410. array_pad(|array input, int pad_size, mixed pad_value)
  411. [array_pop | Pop the element off the end of array, returns mixed]
  412. array_pop(|array array)
  413. [array_push | Push one or more elements onto the end of array, returns int]
  414. array_push(|array array, mixed var, [mixed ...])
  415. [array_rand | Pick one or more random entries out of an array, returns mixed]
  416. array_rand(|array input, [int num_req])
  417. [array_reduce | Iteratively reduce the array to a single value using a callback function, returns mixed]
  418. array_reduce(|array input, callback function, [int initial])
  419. [array_reverse | Return an array with elements in reverse order, returns array]
  420. array_reverse(|array array, [bool preserve_keys])
  421. [array_search | Searches the array for a given value and returns the corresponding key if successful, returns mixed]
  422. array_search(|mixed needle, array haystack, [bool strict])
  423. [array_shift | Shift an element off the beginning of array, returns mixed]
  424. array_shift(|array array)
  425. [array_slice | Extract a slice of the array, returns array]
  426. array_slice(|array array, int offset, [int length])
  427. [array_splice | Remove a portion of the array and replace it with something else, returns array]
  428. array_splice(|array input, int offset, [int length], [array replacement])
  429. [array_sum | Calculate the sum of values in an array., returns mixed]
  430. array_sum(|array array)
  431. [array_udiff_assoc | Computes the difference of arrays with additional index check. The data is compared by using a callback function., returns array]
  432. array_udiff_assoc(|array array1, array array2, [array ...], callback data_compare_func)
  433. [array_udiff_uassoc | Computes the difference of arrays with additional index check. The data is compared by using a callback function. The index check is done by a callback function also, returns array]
  434. array_udiff_uassoc(|array array1, array array2, [array ...], callback data_compare_func, callback key_compare_func)
  435. [array_udiff | Computes the difference of arrays by using callback function for data comparison., returns array]
  436. array_udiff(|array array1, array array2, [array ...], callback data_compare_func)
  437. [array_unique | Removes duplicate values from an array, returns array]
  438. array_unique(|array array)
  439. [array_unshift | Prepend one or more elements to the beginning of array, returns int]
  440. array_unshift(|array array, mixed var, [mixed ...])
  441. [array_values | Return all the values of an array, returns array]
  442. array_values(|array input)
  443. [array_walk | Apply a user function to every member of an array, returns bool]
  444. array_walk(|array array, callback function, [mixed userdata])
  445. [array | Create an array, returns array]
  446. array(|[mixed ...])
  447. [arsort | Sort an array in reverse order and maintain index association, returns void]
  448. arsort(|array array, [int sort_flags])
  449. [asort | Sort an array and maintain index association, returns void]
  450. asort(|array array, [int sort_flags])
  451. [compact | Create array containing variables and their values, returns array]
  452. compact(|mixed varname, [mixed ...])
  453. [count | Count elements in a variable, returns int]
  454. count(|mixed var, [int mode])
  455. [current | Return the current element in an array, returns mixed]
  456. current(|array array)
  457. [each | Return the current key and value pair from an array and advance the array cursor, returns array]
  458. each(|array array)
  459. [end | Set the internal pointer of an array to its last element, returns mixed]
  460. end(|array array)
  461. [extract | Import variables into the current symbol table from an array, returns int]
  462. extract(|array var_array, [int extract_type], [string prefix])
  463. [in_array | Checks if a value exists in an array, returns bool]
  464. in_array(|mixed needle, array haystack, [bool strict])
  465. [key | Fetch a key from an associative array, returns mixed]
  466. key(|array array)
  467. [krsort | Sort an array by key in reverse order, returns int]
  468. krsort(|array array, [int sort_flags])
  469. [ksort | Sort an array by key, returns int]
  470. ksort(|array array, [int sort_flags])
  471. [list | Assign variables as if they were an array, returns void]
  472. list(|mixed ...)
  473. [natcasesort | Sort an array using a case insensitive "natural order" algorithm, returns void]
  474. natcasesort(|array array)
  475. [natsort | Sort an array using a "natural order" algorithm, returns void]
  476. natsort(|array array)
  477. [next | Advance the internal array pointer of an array, returns mixed]
  478. next(|array array)
  479. [pos | Get the current element from an array, returns mixed]
  480. pos(|array array)
  481. [prev | Rewind the internal array pointer, returns mixed]
  482. prev(|array array)
  483. [range | Create an array containing a range of elements, returns array]
  484. range(|int low, int high, [int step])
  485. [reset | Set the internal pointer of an array to its first element, returns mixed]
  486. reset(|array array)
  487. [rsort | Sort an array in reverse order, returns void]
  488. rsort(|array array, [int sort_flags])
  489. [shuffle | Shuffle an array, returns void]
  490. shuffle(|array array)
  491. [sizeof | Alias of count]
  492. sizeof(|)
  493. [sort | Sort an array, returns void]
  494. sort(|array array, [int sort_flags])
  495. [uasort | Sort an array with a user-defined comparison function and maintain index association, returns void]
  496. uasort(|array array, callback cmp_function)
  497. [uksort | Sort an array by keys using a user-defined comparison function, returns void]
  498. uksort(|array array, callback cmp_function)
  499. [usort | Sort an array by values using a user-defined comparison function, returns void]
  500. usort(|array array, callback cmp_function)
  501. ; -----------------------------------------------------------------------------
  502. ; Aspell - Aspell functions [deprecated]
  503. ; -----------------------------------------------------------------------------
  504. [aspell_check_raw | Check a word without changing its case or trying to trim it [deprecated], returns bool]
  505. aspell_check_raw(|int dictionary_link, string word)
  506. [aspell_check | Check a word [deprecated], returns bool]
  507. aspell_check(|int dictionary_link, string word)
  508. [aspell_new | Load a new dictionary [deprecated], returns int]
  509. aspell_new(|string master, [string personal])
  510. [aspell_suggest | Suggest spellings of a word [deprecated], returns array]
  511. aspell_suggest(|int dictionary_link, string word)
  512. ; -----------------------------------------------------------------------------
  513. ; BC math - BCMath Arbitrary Precision Mathematics Functions
  514. ; -----------------------------------------------------------------------------
  515. [bcadd | Add two arbitrary precision numbers, returns string]
  516. bcadd(|string left_operand, string right_operand, [int scale])
  517. [bccomp | Compare two arbitrary precision numbers, returns int]
  518. bccomp(|string left_operand, string right_operand, [int scale])
  519. [bcdiv | Divide two arbitrary precision numbers, returns string]
  520. bcdiv(|string left_operand, string right_operand, [int scale])
  521. [bcmod | Get modulus of an arbitrary precision number, returns string]
  522. bcmod(|string left_operand, string modulus)
  523. [bcmul | Multiply two arbitrary precision number, returns string]
  524. bcmul(|string left_operand, string right_operand, [int scale])
  525. [bcpow | Raise an arbitrary precision number to another, returns string]
  526. bcpow(|string x, int y, [int scale])
  527. [bcpowmod | Raise an arbitrary precision number to another, reduced by a specified modulus., returns string]
  528. bcpowmod(|string x, string y, string modulus, [int scale])
  529. [bcscale | Set default scale parameter for all bc math functions, returns string]
  530. bcscale(|int scale)
  531. [bcsqrt | Get the square root of an arbitrary precision number, returns string]
  532. bcsqrt(|string operand, [int scale])
  533. [bcsub | Subtract one arbitrary precision number from another, returns string]
  534. bcsub(|string left_operand, string right_operand, [int scale])
  535. ; -----------------------------------------------------------------------------
  536. ; Bzip2 - Bzip2 Compression Functions
  537. ; -----------------------------------------------------------------------------
  538. [bzclose | Close a bzip2 file pointer, returns int]
  539. bzclose(|resource bz)
  540. [bzcompress | Compress a string into bzip2 encoded data, returns string]
  541. bzcompress(|string source, [int blocksize], [int workfactor])
  542. [bzdecompress | Decompresses bzip2 encoded data, returns string]
  543. bzdecompress(|string source, [int small])
  544. [bzerrno | Returns a bzip2 error number, returns int]
  545. bzerrno(|resource bz)
  546. [bzerror | Returns the bzip2 error number and error string in an array, returns array]
  547. bzerror(|resource bz)
  548. [bzerrstr | Returns a bzip2 error string, returns string]
  549. bzerrstr(|resource bz)
  550. [bzflush | Force a write of all buffered data, returns int]
  551. bzflush(|resource bz)
  552. [bzopen | Open a bzip2 compressed file, returns resource]
  553. bzopen(|string filename, string mode)
  554. [bzread | Binary safe bzip2 file read, returns string]
  555. bzread(|resource bz, [int length])
  556. [bzwrite | Binary safe bzip2 file write, returns int]
  557. bzwrite(|resource bz, string data, [int length])
  558. ; -----------------------------------------------------------------------------
  559. ; Calendar - Calendar functions
  560. ; -----------------------------------------------------------------------------
  561. [cal_days_in_month | Return the number of days in a month for a given year and calendar, returns int]
  562. cal_days_in_month(|int calendar, int month, int year)
  563. [cal_from_jd | Converts from Julian Day Count to a supported calendar, returns array]
  564. cal_from_jd(|int jd, int calendar)
  565. [cal_info | Returns information about a particular calendar, returns array]
  566. cal_info(|[int calendar])
  567. [cal_to_jd | Converts from a supported calendar to Julian Day Count, returns int]
  568. cal_to_jd(|int calendar, int month, int day, int year)
  569. [easter_date | Get UNIX timestamp for midnight on Easter of a given year, returns int]
  570. easter_date(|[int year])
  571. [easter_days | Get number of days after March 21 on which Easter falls for a given year, returns int]
  572. easter_days(|[int year], [int method])
  573. [FrenchToJD | Converts a date from the French Republican Calendar to a Julian Day Count, returns int]
  574. frenchtojd(|int month, int day, int year)
  575. [GregorianToJD | Converts a Gregorian date to Julian Day Count, returns int]
  576. gregoriantojd(|int month, int day, int year)
  577. [JDDayOfWeek | Returns the day of the week, returns mixed]
  578. jddayofweek(|int julianday, int mode)
  579. [JDMonthName | Returns a month name, returns string]
  580. jdmonthname(|int julianday, int mode)
  581. [JDToFrench | Converts a Julian Day Count to the French Republican Calendar, returns string]
  582. jdtofrench(|int juliandaycount)
  583. [JDToGregorian | Converts Julian Day Count to Gregorian date, returns string]
  584. jdtogregorian(|int julianday)
  585. [jdtojewish | Converts a julian day count to a jewish calendar date, returns string]
  586. jdtojewish(|int juliandaycount, [bool hebrew], [int fl])
  587. [JDToJulian | Converts a Julian Day Count to a Julian Calendar Date, returns string]
  588. jdtojulian(|int julianday)
  589. [jdtounix | Convert Julian Day to UNIX timestamp, returns int]
  590. jdtounix(|int jday)
  591. [JewishToJD | Converts a date in the Jewish Calendar to Julian Day Count, returns int]
  592. jewishtojd(|int month, int day, int year)
  593. [JulianToJD | Converts a Julian Calendar date to Julian Day Count, returns int]
  594. juliantojd(|int month, int day, int year)
  595. [unixtojd | Convert UNIX timestamp to Julian Day, returns int]
  596. unixtojd(|[int timestamp])
  597. ; -----------------------------------------------------------------------------
  598. ; CCVS - CCVS API Functions
  599. ; -----------------------------------------------------------------------------
  600. [ccvs_add | Add data to a transaction, returns string]
  601. ccvs_add(|string session, string invoice, string argtype, string argval)
  602. [ccvs_auth | Perform credit authorization test on a transaction, returns string]
  603. ccvs_auth(|string session, string invoice)
  604. [ccvs_command | Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API, returns string]
  605. ccvs_command(|string session, string type, string argval)
  606. [ccvs_count | Find out how many transactions of a given type are stored in the system, returns int]
  607. ccvs_count(|string session, string type)
  608. [ccvs_delete | Delete a transaction, returns string]
  609. ccvs_delete(|string session, string invoice)
  610. [ccvs_done | Terminate CCVS engine and do cleanup work, returns string]
  611. ccvs_done(|string sess)
  612. [ccvs_init | Initialize CCVS for use, returns string]
  613. ccvs_init(|string name)
  614. [ccvs_lookup | Look up an item of a particular type in the database #, returns string]
  615. ccvs_lookup(|string session, string invoice, int inum)
  616. [ccvs_new | Create a new, blank transaction, returns string]
  617. ccvs_new(|string session, string invoice)
  618. [ccvs_report | Return the status of the background communication process, returns string]
  619. ccvs_report(|string session, string type)
  620. [ccvs_return | Transfer funds from the merchant to the credit card holder, returns string]
  621. ccvs_return(|string session, string invoice)
  622. [ccvs_reverse | Perform a full reversal on an already-processed authorization, returns string]
  623. ccvs_reverse(|string session, string invoice)
  624. [ccvs_sale | Transfer funds from the credit card holder to the merchant, returns string]
  625. ccvs_sale(|string session, string invoice)
  626. [ccvs_status | Check the status of an invoice, returns string]
  627. ccvs_status(|string session, string invoice)
  628. [ccvs_textvalue | Get text return value for previous function call, returns string]
  629. ccvs_textvalue(|string session)
  630. [ccvs_void | Perform a full reversal on a completed transaction, returns string]
  631. ccvs_void(|string session, string invoice)
  632. ; -----------------------------------------------------------------------------
  633. ; COM - COM support functions for Windows
  634. ; -----------------------------------------------------------------------------
  635. [COM | COM class, returns string]
  636. COM::COM(|string module_name, [string server_name], [int codepage])
  637. [VARIANT | VARIANT class, returns string]
  638. VARIANT::VARIANT(|[mixed value], [int type], [int codepage])
  639. [com_addref | Increases the components reference counter., returns void]
  640. com_addref()|
  641. [com_get | Gets the value of a COM Component's property, returns mixed]
  642. com_get(|resource com_object, string property)
  643. [com_invoke | Calls a COM component's method., returns mixed]
  644. com_invoke(|resource com_object, string function_name, [mixed function parameters, ...])
  645. [com_isenum | Grabs an IEnumVariant, returns void]
  646. com_isenum(|object com_module)
  647. [com_load_typelib | Loads a Typelib, returns void]
  648. com_load_typelib(|string typelib_name, [int case_insensitive])
  649. [com_load | Creates a new reference to a COM component, returns string]
  650. com_load(|string module_name, [string server_name], [int codepage])
  651. [com_propget | Alias of com_get]
  652. com_propget(|)
  653. [com_propput | Alias of com_set]
  654. com_propput(|)
  655. [com_propset | Alias of com_set]
  656. com_propset(|)
  657. [com_release | Decreases the components reference counter., returns void]
  658. com_release()|
  659. [com_set | Assigns a value to a COM component's property, returns void]
  660. com_set(|resource com_object, string property, mixed value)
  661. ; -----------------------------------------------------------------------------
  662. ; Classes/Objects - Class/Object Functions
  663. ; -----------------------------------------------------------------------------
  664. [call_user_method_array | Call a user method given with an array of parameters [deprecated], returns mixed]
  665. call_user_method_array(|string method_name, object obj, [array paramarr])
  666. [call_user_method | Call a user method on an specific object [deprecated], returns mixed]
  667. call_user_method(|string method_name, object obj, [mixed parameter], [mixed ...])
  668. [class_exists | Checks if the class has been defined, returns bool]
  669. class_exists(|string class_name)
  670. [get_class_methods | Returns an array of class methods' names, returns array]
  671. get_class_methods(|mixed class_name)
  672. [get_class_vars | Returns an array of default properties of the class, returns array]
  673. get_class_vars(|string class_name)
  674. [get_class | Returns the name of the class of an object, returns string]
  675. get_class(|object obj)
  676. [get_declared_classes | Returns an array with the name of the defined classes, returns array]
  677. get_declared_classes()|
  678. [get_object_vars | Returns an associative array of object properties, returns array]
  679. get_object_vars(|object obj)
  680. [get_parent_class | Retrieves the parent class name for object or class, returns string]
  681. get_parent_class(|mixed obj)
  682. [is_a | Returns TRUE if the object is of this class or has this class as one of its parents, returns bool]
  683. is_a(|object object, string class_name)
  684. [is_subclass_of | Returns TRUE if the object has this class as one of its parents, returns bool]
  685. is_subclass_of(|object object, string class_name)
  686. [method_exists | Checks if the class method exists, returns bool]
  687. method_exists(|object object, string method_name)
  688. ; -----------------------------------------------------------------------------
  689. ; ClibPDF - ClibPDF functions
  690. ; -----------------------------------------------------------------------------
  691. [cpdf_add_annotation | Adds annotation, returns bool]
  692. cpdf_add_annotation(|int pdf_document, float llx, float lly, float urx, float ury, string title, string content, [int mode])
  693. [cpdf_add_outline | Adds bookmark for current page, returns int]
  694. cpdf_add_outline(|int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text)
  695. [cpdf_arc | Draws an arc, returns bool]
  696. cpdf_arc(|int pdf_document, float x-coor, float y-coor, float radius, float start, float end, [int mode])
  697. [cpdf_begin_text | Starts text section, returns bool]
  698. cpdf_begin_text(|int pdf_document)
  699. [cpdf_circle | Draw a circle, returns bool]
  700. cpdf_circle(|int pdf_document, float x-coor, float y-coor, float radius, [int mode])
  701. [cpdf_clip | Clips to current path, returns bool]
  702. cpdf_clip(|int pdf_document)
  703. [cpdf_close | Closes the pdf document, returns bool]
  704. cpdf_close(|int pdf_document)
  705. [cpdf_closepath_fill_stroke | Close, fill and stroke current path, returns bool]
  706. cpdf_closepath_fill_stroke(|int pdf_document)
  707. [cpdf_closepath_stroke | Close path and draw line along path, returns bool]
  708. cpdf_closepath_stroke(|int pdf_document)
  709. [cpdf_closepath | Close path, returns bool]
  710. cpdf_closepath(|int pdf_document)
  711. [cpdf_continue_text | Output text in next line, returns bool]
  712. cpdf_continue_text(|int pdf_document, string text)
  713. [cpdf_curveto | Draws a curve, returns bool]
  714. cpdf_curveto(|int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3, [int mode])
  715. [cpdf_end_text | Ends text section, returns bool]
  716. cpdf_end_text(|int pdf_document)
  717. [cpdf_fill_stroke | Fill and stroke current path, returns bool]
  718. cpdf_fill_stroke(|int pdf_document)
  719. [cpdf_fill | Fill current path, returns bool]
  720. cpdf_fill(|int pdf_document)
  721. [cpdf_finalize_page | Ends page, returns bool]
  722. cpdf_finalize_page(|int pdf_document, int page_number)
  723. [cpdf_finalize | Ends document, returns bool]
  724. cpdf_finalize(|int pdf_document)
  725. [cpdf_global_set_document_limits | Sets document limits for any pdf document, returns bool]
  726. cpdf_global_set_document_limits(|int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects)
  727. [cpdf_import_jpeg | Opens a JPEG image, returns int]
  728. cpdf_import_jpeg(|int pdf_document, string file_name, float x-coor, float y-coor, float angle, float width, float height, float x-scale, float y-scale, int gsave, [int mode])
  729. [cpdf_lineto | Draws a line, returns bool]
  730. cpdf_lineto(|int pdf_document, float x-coor, float y-coor, [int mode])
  731. [cpdf_moveto | Sets current point, returns bool]
  732. cpdf_moveto(|int pdf_document, float x-coor, float y-coor, [int mode])
  733. [cpdf_newpath | Starts a new path, returns bool]
  734. cpdf_newpath(|int pdf_document)
  735. [cpdf_open | Opens a new pdf document, returns int]
  736. cpdf_open(|int compression, [string filename])
  737. [cpdf_output_buffer | Outputs the pdf document in memory buffer, returns bool]
  738. cpdf_output_buffer(|int pdf_document)
  739. [cpdf_page_init | Starts new page, returns bool]
  740. cpdf_page_init(|int pdf_document, int page_number, int orientation, float height, float width, [float unit])
  741. [cpdf_place_inline_image | Places an image on the page, returns bool]
  742. cpdf_place_inline_image(|int pdf_document, int image, float x-coor, float y-coor, float angle, float width, float height, [int mode])
  743. [cpdf_rect | Draw a rectangle, returns bool]
  744. cpdf_rect(|int pdf_document, float x-coor, float y-coor, float width, float height, [int mode])
  745. [cpdf_restore | Restores formerly saved environment, returns bool]
  746. cpdf_restore(|int pdf_document)
  747. [cpdf_rlineto | Draws a line, returns bool]
  748. cpdf_rlineto(|int pdf_document, float x-coor, float y-coor, [int mode])
  749. [cpdf_rmoveto | Sets current point, returns bool]
  750. cpdf_rmoveto(|int pdf_document, float x-coor, float y-coor, [int mode])
  751. [cpdf_rotate_text | Sets text rotation angle, returns bool]
  752. cpdf_rotate_text(|int pdfdoc, float angle)
  753. [cpdf_rotate | Sets rotation, returns bool]
  754. cpdf_rotate(|int pdf_document, float angle)
  755. [cpdf_save_to_file | Writes the pdf document into a file, returns bool]
  756. cpdf_save_to_file(|int pdf_document, string filename)
  757. [cpdf_save | Saves current environment, returns bool]
  758. cpdf_save(|int pdf_document)
  759. [cpdf_scale | Sets scaling, returns bool]
  760. cpdf_scale(|int pdf_document, float x-scale, float y-scale)
  761. [cpdf_set_action_url | Sets hyperlink, returns bool]
  762. cpdf_set_action_url(|int pdfdoc, float xll, float yll, float xur, float xur, string url, [int mode])
  763. [cpdf_set_char_spacing | Sets character spacing, returns bool]
  764. cpdf_set_char_spacing(|int pdf_document, float space)
  765. [cpdf_set_creator | Sets the creator field in the pdf document, returns bool]
  766. cpdf_set_creator(|string creator)
  767. [cpdf_set_current_page | Sets current page, returns bool]
  768. cpdf_set_current_page(|int pdf_document, int page_number)
  769. [cpdf_set_font_directories | Sets directories to search when using external fonts, returns bool]
  770. cpdf_set_font_directories(|int pdfdoc, string pfmdir, string pfbdir)
  771. [cpdf_set_font_map_file | Sets fontname to filename translation map when using external fonts, returns bool]
  772. cpdf_set_font_map_file(|int pdfdoc, string filename)
  773. [cpdf_set_font | Select the current font face and size, returns bool]
  774. cpdf_set_font(|int pdf_document, string font_name, float size, string encoding)
  775. [cpdf_set_horiz_scaling | Sets horizontal scaling of text, returns bool]
  776. cpdf_set_horiz_scaling(|int pdf_document, float scale)
  777. [cpdf_set_keywords | Sets the keywords field of the pdf document, returns bool]
  778. cpdf_set_keywords(|string keywords)
  779. [cpdf_set_leading | Sets distance between text lines, returns bool]
  780. cpdf_set_leading(|int pdf_document, float distance)
  781. [cpdf_set_page_animation | Sets duration between pages, returns bool]
  782. cpdf_set_page_animation(|int pdf_document, int transition, float duration)
  783. [cpdf_set_subject | Sets the subject field of the pdf document, returns bool]
  784. cpdf_set_subject(|int pdf_document, string subject)
  785. [cpdf_set_text_matrix | Sets the text matrix, returns bool]
  786. cpdf_set_text_matrix(|int pdf_document, array matrix)
  787. [cpdf_set_text_pos | Sets text position, returns bool]
  788. cpdf_set_text_pos(|int pdf_document, float x-coor, float y-coor, [int mode])
  789. [cpdf_set_text_rendering | Determines how text is rendered, returns bool]
  790. cpdf_set_text_rendering(|int pdf_document, int rendermode)
  791. [cpdf_set_text_rise | Sets the text rise, returns bool]
  792. cpdf_set_text_rise(|int pdf_document, float value)
  793. [cpdf_set_title | Sets the title field of the pdf document, returns bool]
  794. cpdf_set_title(|string title)
  795. [cpdf_set_viewer_preferences | How to show the document in the viewer, returns bool]
  796. cpdf_set_viewer_preferences(|int pdfdoc, array preferences)
  797. [cpdf_set_word_spacing | Sets spacing between words, returns bool]
  798. cpdf_set_word_spacing(|int pdf_document, float space)
  799. [cpdf_setdash | Sets dash pattern, returns bool]
  800. cpdf_setdash(|int pdf_document, float white, float black)
  801. [cpdf_setflat | Sets flatness, returns bool]
  802. cpdf_setflat(|int pdf_document, float value)
  803. [cpdf_setgray_fill | Sets filling color to gray value, returns bool]
  804. cpdf_setgray_fill(|int pdf_document, float value)
  805. [cpdf_setgray_stroke | Sets drawing color to gray value, returns bool]
  806. cpdf_setgray_stroke(|int pdf_document, float gray_value)
  807. [cpdf_setgray | Sets drawing and filling color to gray value, returns bool]
  808. cpdf_setgray(|int pdf_document, float gray_value)
  809. [cpdf_setlinecap | Sets linecap parameter, returns bool]
  810. cpdf_setlinecap(|int pdf_document, int value)
  811. [cpdf_setlinejoin | Sets linejoin parameter, returns bool]
  812. cpdf_setlinejoin(|int pdf_document, int value)
  813. [cpdf_setlinewidth | Sets line width, returns bool]
  814. cpdf_setlinewidth(|int pdf_document, float width)
  815. [cpdf_setmiterlimit | Sets miter limit, returns bool]
  816. cpdf_setmiterlimit(|int pdf_document, float value)
  817. [cpdf_setrgbcolor_fill | Sets filling color to rgb color value, returns bool]
  818. cpdf_setrgbcolor_fill(|int pdf_document, float red_value, float green_value, float blue_value)
  819. [cpdf_setrgbcolor_stroke | Sets drawing color to rgb color value, returns bool]
  820. cpdf_setrgbcolor_stroke(|int pdf_document, float red_value, float green_value, float blue_value)
  821. [cpdf_setrgbcolor | Sets drawing and filling color to rgb color value, returns bool]
  822. cpdf_setrgbcolor(|int pdf_document, float red_value, float green_value, float blue_value)
  823. [cpdf_show_xy | Output text at position, returns bool]
  824. cpdf_show_xy(|int pdf_document, string text, float x-coor, float y-coor, [int mode])
  825. [cpdf_show | Output text at current position, returns bool]
  826. cpdf_show(|int pdf_document, string text)
  827. [cpdf_stringwidth | Returns width of text in current font, returns float]
  828. cpdf_stringwidth(|int pdf_document, string text)
  829. [cpdf_stroke | Draw line along path, returns bool]
  830. cpdf_stroke(|int pdf_document)
  831. [cpdf_text | Output text with parameters, returns bool]
  832. cpdf_text(|int pdf_document, string text, float x-coor, float y-coor, [int mode], [float orientation], [int alignmode])
  833. [cpdf_translate | Sets origin of coordinate system, returns bool]
  834. cpdf_translate(|int pdf_document, float x-coor, float y-coor, [int mode])
  835. ; -----------------------------------------------------------------------------
  836. ; Crack - Crack functions
  837. ; -----------------------------------------------------------------------------
  838. [crack_check | Performs an obscure check with the given password, returns bool]
  839. crack_check(|[resource dictionary], string password)
  840. [crack_closedict | Closes an open CrackLib dictionary, returns bool]
  841. crack_closedict(|[resource dictionary])
  842. [crack_getlastmessage | Returns the message from the last obscure check, returns string]
  843. crack_getlastmessage()|
  844. [crack_opendict | Opens a new CrackLib dictionary, returns resource]
  845. crack_opendict(|string dictionary)
  846. ; -----------------------------------------------------------------------------
  847. ; CURL - CURL, Client URL Library Functions
  848. ; -----------------------------------------------------------------------------
  849. [curl_close | Close a CURL session, returns void]
  850. curl_close(|resource ch)
  851. [curl_errno | Return the last error number, returns int]
  852. curl_errno(|resource ch)
  853. [curl_error | Return a string containing the last error for the current session, returns string]
  854. curl_error(|resource ch)
  855. [curl_exec | Perform a CURL session, returns mixed]
  856. curl_exec(|resource ch)
  857. [curl_getinfo | Get information regarding a specific transfer, returns string]
  858. curl_getinfo(|resource ch, [int opt])
  859. [curl_init | Initialize a CURL session, returns resource]
  860. curl_init(|[string url])
  861. [curl_multi_add_handle | Add a normal cURL handle to a cURL multi handle, returns int]
  862. curl_multi_add_handle(|resource mh, resource ch)
  863. [curl_multi_close | Close a set of cURL handles, returns void]
  864. curl_multi_close(|resource mh)
  865. [curl_multi_exec | Run the sub-connections of the current cURL handle, returns int]
  866. curl_multi_exec(|resource mh)
  867. [curl_multi_getcontent | Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set, returns string]
  868. curl_multi_getcontent(|resource ch)
  869. [curl_multi_info_read | Get information about the current transfers, returns array]
  870. curl_multi_info_read(|resource mh)
  871. [curl_multi_init | Returns a new cURL multi handle, returns resource]
  872. curl_multi_init()|
  873. [curl_multi_remove_handle | Remove a multi handle from a set of cURL handles, returns int]
  874. curl_multi_remove_handle(|resource mh, resource ch)
  875. [curl_multi_select | Get all the sockets associated with the cURL extension, which can then be "selected", returns int]
  876. curl_multi_select(|resource mh, [float timeout])
  877. [curl_setopt | Set an option for a CURL transfer, returns bool]
  878. curl_setopt(|resource ch, string option, mixed value)
  879. [curl_version | Return the current CURL version, returns string]
  880. curl_version()|
  881. ; -----------------------------------------------------------------------------
  882. ; Cybercash - Cybercash payment functions
  883. ; -----------------------------------------------------------------------------
  884. [cybercash_base64_decode | base64 decode data for Cybercash, returns string]
  885. cybercash_base64_decode(|string inbuff)
  886. [cybercash_base64_encode | base64 encode data for Cybercash, returns string]
  887. cybercash_base64_encode(|string inbuff)
  888. [cybercash_decr | Cybercash decrypt, returns array]
  889. cybercash_decr(|string wmk, string sk, string inbuff)
  890. [cybercash_encr | Cybercash encrypt, returns array]
  891. cybercash_encr(|string wmk, string sk, string inbuff)
  892. ; -----------------------------------------------------------------------------
  893. ; Cyrus IMAP - Cyrus IMAP administration functions
  894. ; -----------------------------------------------------------------------------
  895. [cyrus_authenticate | Authenticate against a Cyrus IMAP server, returns bool]
  896. cyrus_authenticate(|resource connection, [string mechlist], [string service], [string user], [int minssf], [int maxssf])
  897. [cyrus_bind | Bind callbacks to a Cyrus IMAP connection, returns bool]
  898. cyrus_bind(|resource connection, array callbacks)
  899. [cyrus_close | Close connection to a Cyrus IMAP server, returns bool]
  900. cyrus_close(|resource connection)
  901. [cyrus_connect | Connect to a Cyrus IMAP server, returns resource]
  902. cyrus_connect(|[string host], [string port], [int flags])
  903. [cyrus_query | Send a query to a Cyrus IMAP server, returns bool]
  904. cyrus_query(|resource connection, string query)
  905. [cyrus_unbind | Unbind ..., returns bool]
  906. cyrus_unbind(|resource connection, string trigger_name)
  907. ; -----------------------------------------------------------------------------
  908. ; ctype - Character type functions
  909. ; -----------------------------------------------------------------------------
  910. [ctype_alnum | Check for alphanumeric character(s), returns bool]
  911. ctype_alnum(|string text)
  912. [ctype_alpha | Check for alphabetic character(s), returns bool]
  913. ctype_alpha(|string text)
  914. [ctype_cntrl | Check for control character(s), returns bool]
  915. ctype_cntrl(|string text)
  916. [ctype_digit | Check for numeric character(s), returns bool]
  917. ctype_digit(|string text)
  918. [ctype_graph | Check for any printable character(s) except space, returns bool]
  919. ctype_graph(|string text)
  920. [ctype_lower | Check for lowercase character(s), returns bool]
  921. ctype_lower(|string text)
  922. [ctype_print | Check for printable character(s), returns bool]
  923. ctype_print(|string text)
  924. [ctype_punct | Check for any printable character which is not whitespace or an alphanumeric character, returns bool]
  925. ctype_punct(|string text)
  926. [ctype_space | Check for whitespace character(s), returns bool]
  927. ctype_space(|string text)
  928. [ctype_upper | Check for uppercase character(s), returns bool]
  929. ctype_upper(|string text)
  930. [ctype_xdigit | Check for character(s) representing a hexadecimal digit, returns bool]
  931. ctype_xdigit(|string text)
  932. ; -----------------------------------------------------------------------------
  933. ; dba - Database (dbm-style) abstraction layer functions
  934. ; -----------------------------------------------------------------------------
  935. [dba_close | Close database, returns void]
  936. dba_close(|resource handle)
  937. [dba_delete | Delete entry specified by key, returns bool]
  938. dba_delete(|string key, resource handle)
  939. [dba_exists | Check whether key exists, returns bool]
  940. dba_exists(|string key, resource handle)
  941. [dba_fetch | Fetch data specified by key, returns string]
  942. dba_fetch(|string key, resource handle)
  943. [dba_firstkey | Fetch first key, returns string]
  944. dba_firstkey(|resource handle)
  945. [dba_handlers | List handlers available, returns array]
  946. dba_handlers()|
  947. [dba_insert | Insert entry, returns bool]
  948. dba_insert(|string key, string value, resource handle)
  949. [dba_key_split | Splits a key in string representation into array representation, returns mixed]
  950. dba_key_split(|mixed key)
  951. [dba_list | List all open database files, returns array]
  952. dba_list()|
  953. [dba_nextkey | Fetch next key, returns string]
  954. dba_nextkey(|resource handle)
  955. [dba_open | Open database, returns resource]
  956. dba_open(|string path, string mode, string handler, [ ...])
  957. [dba_optimize | Optimize database, returns bool]
  958. dba_optimize(|resource handle)
  959. [dba_popen | Open database persistently, returns resource]
  960. dba_popen(|string path, string mode, string handler, [ ...])
  961. [dba_replace | Replace or insert entry, returns bool]
  962. dba_replace(|string key, string value, resource handle)
  963. [dba_sync | Synchronize database, returns bool]
  964. dba_sync(|resource handle)
  965. ; -----------------------------------------------------------------------------
  966. ; Date/Time - Date and Time functions
  967. ; -----------------------------------------------------------------------------
  968. [checkdate | Validate a gregorian date, returns bool]
  969. checkdate(|int month, int day, int year)
  970. [date | Format a local time/date, returns string]
  971. date(|string format, [int timestamp])
  972. [getdate | Get date/time information, returns array]
  973. getdate(|[int timestamp])
  974. [gettimeofday | Get current time, returns array]
  975. gettimeofday()|
  976. [gmdate | Format a GMT/UTC date/time, returns string]
  977. gmdate(|string format, [int timestamp])
  978. [gmmktime | Get UNIX timestamp for a GMT date, returns int]
  979. gmmktime(|[int hour], [int minute], [int second], [int month], [int day], [int year], [int is_dst])
  980. [gmstrftime | Format a GMT/UTC time/date according to locale settings, returns string]
  981. gmstrftime(|string format, [int timestamp])
  982. [localtime | Get the local time, returns array]
  983. localtime(|[int timestamp], [bool is_associative])
  984. [microtime | Return current UNIX timestamp with microseconds, returns string]
  985. microtime()|
  986. [mktime | Get UNIX timestamp for a date, returns int]
  987. mktime(|[int hour], [int minute], [int second], [int month], [int day], [int year], [int is_dst])
  988. [strftime | Format a local time/date according to locale settings, returns string]
  989. strftime(|string format, [int timestamp])
  990. [strtotime | Parse about any English textual datetime description into a UNIX timestamp, returns int]
  991. strtotime(|string time, [int now])
  992. [time | Return current UNIX timestamp, returns int]
  993. time()|
  994. ; -----------------------------------------------------------------------------
  995. ; dBase - dBase functions
  996. ; -----------------------------------------------------------------------------
  997. [dbase_add_record | Add a record to a dBase database, returns bool]
  998. dbase_add_record(|int dbase_identifier, array record)
  999. [dbase_close | Close a dBase database, returns bool]
  1000. dbase_close(|int dbase_identifier)
  1001. [dbase_create | Creates a dBase database, returns int]
  1002. dbase_create(|string filename, array fields)
  1003. [dbase_delete_record | Deletes a record from a dBase database, returns bool]
  1004. dbase_delete_record(|int dbase_identifier, int record)
  1005. [dbase_get_header_info | Get the header info of a dBase database, returns array]
  1006. dbase_get_header_info(|int dbase_identifier)
  1007. [dbase_get_record_with_names | Gets a record from a dBase database as an associative array, returns array]
  1008. dbase_get_record_with_names(|int dbase_identifier, int record)
  1009. [dbase_get_record | Gets a record from a dBase database, returns array]
  1010. dbase_get_record(|int dbase_identifier, int record)
  1011. [dbase_numfields | Find out how many fields are in a dBase database, returns int]
  1012. dbase_numfields(|int dbase_identifier)
  1013. [dbase_numrecords | Find out how many records are in a dBase database, returns int]
  1014. dbase_numrecords(|int dbase_identifier)
  1015. [dbase_open | Opens a dBase database, returns int]
  1016. dbase_open(|string filename, int flags)
  1017. [dbase_pack | Packs a dBase database, returns bool]
  1018. dbase_pack(|int dbase_identifier)
  1019. [dbase_replace_record | Replace a record in a dBase database, returns bool]
  1020. dbase_replace_record(|int dbase_identifier, array record, int dbase_record_number)
  1021. ; -----------------------------------------------------------------------------
  1022. ; DBM - DBM Functions [deprecated]
  1023. ; -----------------------------------------------------------------------------
  1024. [dblist | Describes the DBM-compatible library being used, returns string]
  1025. dblist()|
  1026. [dbmclose | Closes a dbm database, returns bool]
  1027. dbmclose(|resource dbm_identifier)
  1028. [dbmdelete | Deletes the value for a key from a DBM database, returns bool]
  1029. dbmdelete(|resource dbm_identifier, string key)
  1030. [dbmexists | Tells if a value exists for a key in a DBM database, returns bool]
  1031. dbmexists(|resource dbm_identifier, string key)
  1032. [dbmfetch | Fetches a value for a key from a DBM database, returns string]
  1033. dbmfetch(|resource dbm_identifier, string key)
  1034. [dbmfirstkey | Retrieves the first key from a DBM database, returns string]
  1035. dbmfirstkey(|resource dbm_identifier)
  1036. [dbminsert | Inserts a value for a key in a DBM database, returns int]
  1037. dbminsert(|resource dbm_identifier, string key, string value)
  1038. [dbmnextkey | Retrieves the next key from a DBM database, returns string]
  1039. dbmnextkey(|resource dbm_identifier, string key)
  1040. [dbmopen | Opens a DBM database, returns resource]
  1041. dbmopen(|string filename, string flags)
  1042. [dbmreplace | Replaces the value for a key in a DBM database, returns int]
  1043. dbmreplace(|resource dbm_identifier, string key, string value)
  1044. ; -----------------------------------------------------------------------------
  1045. ; dbx - dbx functions
  1046. ; -----------------------------------------------------------------------------
  1047. [dbx_close | Close an open connection/database, returns bool]
  1048. dbx_close(|object link_identifier)
  1049. [dbx_compare | Compare two rows for sorting purposes, returns int]
  1050. dbx_compare(|array row_a, array row_b, string column_key, [int flags])
  1051. [dbx_connect | Open a connection/database, returns object]
  1052. dbx_connect(|mixed module, string host, string database, string username, string password, [int persistent])
  1053. [dbx_error | Report the error message of the latest function call in the module (not just in the connection), returns string]
  1054. dbx_error(|object link_identifier)
  1055. [dbx_escape_string | Escape a string so it can safely be used in an sql-statement., returns string]
  1056. dbx_escape_string(|object link_identifier, string text)
  1057. [dbx_fetch_row | Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set, returns object]
  1058. dbx_fetch_row(|object result_identifier)
  1059. [dbx_query | Send a query and fetch all results (if any), returns object]
  1060. dbx_query(|object link_identifier, string sql_statement, [int flags])
  1061. [dbx_sort | Sort a result from a dbx_query by a custom sort function, returns bool]
  1062. dbx_sort(|object result, string user_compare_function)
  1063. ; -----------------------------------------------------------------------------
  1064. ; DB++ - DB++ Functions
  1065. ; -----------------------------------------------------------------------------
  1066. [dbplus_add | Add a tuple to a relation, returns int]
  1067. dbplus_add(|resource relation, array tuple)
  1068. [dbplus_aql | Perform AQL query, returns resource]
  1069. dbplus_aql(|string query, [string server], [string dbpath])
  1070. [dbplus_chdir | Get/Set database virtual current directory, returns string]
  1071. dbplus_chdir(|[string newdir])
  1072. [dbplus_close | Close a relation, returns int]
  1073. dbplus_close(|resource relation)
  1074. [dbplus_curr | Get current tuple from relation, returns int]
  1075. dbplus_curr(|resource relation, array tuple)
  1076. [dbplus_errcode | Get error string for given errorcode or last error, returns string]
  1077. dbplus_errcode(|int errno)
  1078. [dbplus_errno | Get error code for last operation, returns int]
  1079. dbplus_errno()|
  1080. [dbplus_find | Set a constraint on a relation, returns int]
  1081. dbplus_find(|resource relation, array constraints, mixed tuple)
  1082. [dbplus_first | Get first tuple from relation, returns int]
  1083. dbplus_first(|resource relation, array tuple)
  1084. [dbplus_flush | Flush all changes made on a relation, returns int]
  1085. dbplus_flush(|resource relation)
  1086. [dbplus_freealllocks | Free all locks held by this client, returns int]
  1087. dbplus_freealllocks()|
  1088. [dbplus_freelock | Release write lock on tuple, returns int]
  1089. dbplus_freelock(|resource relation, string tname)
  1090. [dbplus_freerlocks | Free all tuple locks on given relation, returns int]
  1091. dbplus_freerlocks(|resource relation)
  1092. [dbplus_getlock | Get a write lock on a tuple, returns int]
  1093. dbplus_getlock(|resource relation, string tname)
  1094. [dbplus_getunique | Get an id number unique to a relation, returns int]
  1095. dbplus_getunique(|resource relation, int uniqueid)
  1096. [dbplus_info | ???, returns int]
  1097. dbplus_info(|resource relation, string key, array )
  1098. [dbplus_last | Get last tuple from relation, returns int]
  1099. dbplus_last(|resource relation, array tuple)
  1100. [dbplus_lockrel | Request write lock on relation, returns int]
  1101. dbplus_lockrel(|resource relation)
  1102. [dbplus_next | Get next tuple from relation, returns int]
  1103. dbplus_next(|resource relation, array )
  1104. [dbplus_open | Open relation file, returns resource]
  1105. dbplus_open(|string name)
  1106. [dbplus_prev | Get previous tuple from relation, returns int]
  1107. dbplus_prev(|resource relation, array tuple)
  1108. [dbplus_rchperm | Change relation permissions, returns int]
  1109. dbplus_rchperm(|resource relation, int mask, string user, string group)
  1110. [dbplus_rcreate | Creates a new DB++ relation, returns resource]
  1111. dbplus_rcreate(|string name, mixed domlist, [bool overwrite])
  1112. [dbplus_rcrtexact | Creates an exact but empty copy of a relation including indices, returns resource]
  1113. dbplus_rcrtexact(|string name, resource relation, bool overwrite)
  1114. [dbplus_rcrtlike | Creates an empty copy of a relation with default indices, returns resource]
  1115. dbplus_rcrtlike(|string name, resource relation, int flag)
  1116. [dbplus_resolve | Resolve host information for relation, returns int]
  1117. dbplus_resolve(|string relation_name)
  1118. [dbplus_restorepos | ???, returns int]
  1119. dbplus_restorepos(|resource relation, array tuple)
  1120. [dbplus_rkeys | Specify new primary key for a relation, returns resource]
  1121. dbplus_rkeys(|resource relation, mixed domlist)
  1122. [dbplus_ropen | Open relation file local, returns resource]
  1123. dbplus_ropen(|string name)
  1124. [dbplus_rquery | Perform local (raw) AQL query, returns int]
  1125. dbplus_rquery(|string query, string dbpath)
  1126. [dbplus_rrename | Rename a relation, returns int]
  1127. dbplus_rrename(|resource relation, string name)
  1128. [dbplus_rsecindex | Create a new secondary index for a relation, returns resource]
  1129. dbplus_rsecindex(|resource relation, mixed domlist, int type)
  1130. [dbplus_runlink | Remove relation from filesystem, returns int]
  1131. dbplus_runlink(|resource relation)
  1132. [dbplus_rzap | Remove all tuples from relation, returns int]
  1133. dbplus_rzap(|resource relation)
  1134. [dbplus_savepos | ???, returns int]
  1135. dbplus_savepos(|resource relation)
  1136. [dbplus_setindex | ???, returns int]
  1137. dbplus_setindex(|resource relation, string idx_name)
  1138. [dbplus_setindexbynumber | ???, returns int]
  1139. dbplus_setindexbynumber(|resource relation, int idx_number)
  1140. [dbplus_sql | Perform SQL query, returns resource]
  1141. dbplus_sql(|string query, string server, string dbpath)
  1142. [dbplus_tcl | Execute TCL code on server side, returns int]
  1143. dbplus_tcl(|int sid, string script)
  1144. [dbplus_tremove | Remove tuple and return new current tuple, returns int]
  1145. dbplus_tremove(|resource relation, array tuple, [array current])
  1146. [dbplus_undo | ???, returns int]
  1147. dbplus_undo(|resource relation)
  1148. [dbplus_undoprepare | ???, returns int]
  1149. dbplus_undoprepare(|resource relation)
  1150. [dbplus_unlockrel | Give up write lock on relation, returns int]
  1151. dbplus_unlockrel(|resource relation)
  1152. [dbplus_unselect | Remove a constraint from relation, returns int]
  1153. dbplus_unselect(|resource relation)
  1154. [dbplus_update | Update specified tuple in relation, returns int]
  1155. dbplus_update(|resource relation, array old, array new)
  1156. [dbplus_xlockrel | Request exclusive lock on relation, returns int]
  1157. dbplus_xlockrel(|resource relation)
  1158. [dbplus_xunlockrel | Free exclusive lock on relation, returns int]
  1159. dbplus_xunlockrel(|resource relation)
  1160. ; -----------------------------------------------------------------------------
  1161. ; Direct IO - Direct IO functions
  1162. ; -----------------------------------------------------------------------------
  1163. [dio_close | Closes the file descriptor given by fd, returns void]
  1164. dio_close(|resource fd)
  1165. [dio_fcntl | Performs a c library fcntl on fd, returns mixed]
  1166. dio_fcntl(|resource fd, int cmd, [mixed arg])
  1167. [dio_open | Opens a new filename with specified permissions of flags and creation permissions of mode, returns resource]
  1168. dio_open(|string filename, int flags, [int mode])
  1169. [dio_read | Reads n bytes from fd and returns them, if n is not specified, reads 1k block, returns string]
  1170. dio_read(|resource fd, [int n])
  1171. [dio_seek | Seeks to pos on fd from whence, returns int]
  1172. dio_seek(|resource fd, int pos, int whence)
  1173. [dio_stat | Gets stat information about the file descriptor fd, returns array]
  1174. dio_stat(|resource fd)
  1175. [dio_tcsetattr | Sets terminal attributes and baud rate for a serial port, returns ]
  1176. dio_tcsetattr(|resource fd, array options)
  1177. [dio_truncate | Truncates file descriptor fd to offset bytes, returns bool]
  1178. dio_truncate(|resource fd, int offset)
  1179. [dio_write | Writes data to fd with optional truncation at length, returns int]
  1180. dio_write(|resource fd, string data, [int len])
  1181. ; -----------------------------------------------------------------------------
  1182. ; Directories - Directory functions
  1183. ; -----------------------------------------------------------------------------
  1184. [chdir | Change directory, returns bool]
  1185. chdir(|string directory)
  1186. [chroot | Change the root directory, returns bool]
  1187. chroot(|string directory)
  1188. [dir | directory class]
  1189. [closedir | close directory handle, returns void]
  1190. closedir(|resource dir_handle)
  1191. [getcwd | gets the current working directory, returns string]
  1192. getcwd()|
  1193. [opendir | open directory handle, returns resource]
  1194. opendir(|string path)
  1195. [readdir | read entry from directory handle, returns string]
  1196. readdir(|resource dir_handle)
  1197. [rewinddir | rewind directory handle, returns void]
  1198. rewinddir(|resource dir_handle)
  1199. [scandir | List files and directories inside the specified path, returns array]
  1200. scandir(|string directory, [int sorting_order])
  1201. ; -----------------------------------------------------------------------------
  1202. ; DOM XML - DOM XML functions
  1203. ; -----------------------------------------------------------------------------
  1204. [DomAttribute->name | Returns name of attribute, returns bool]
  1205. DomAttribute->name()|
  1206. [DomAttribute->specified | Checks if attribute is specified, returns bool]
  1207. DomAttribute->specified()|
  1208. [DomAttribute->value | Returns value of attribute, returns bool]
  1209. DomAttribute->value()|
  1210. [DomDocument->add_root [deprecated] | Adds a root node, returns resource]
  1211. DomDocument->add_root(|string name)
  1212. [DomDocument->create_attribute | Create new attribute, returns object]
  1213. DomDocument->create_attribute(|string name, string value)
  1214. [DomDocument->create_cdata_section | Create new cdata node, returns string]
  1215. DomDocument->create_cdata_section(|string content)
  1216. [DomDocument->create_comment | Create new comment node, returns object]
  1217. DomDocument->create_comment(|string content)
  1218. [DomDocument->create_element_ns | Create new element node with an associated namespace, returns object]
  1219. DomDocument->create_element_ns(|string uri, string name, [string prefix])
  1220. [DomDocument->create_element | Create new element node, returns object]
  1221. DomDocument->create_element(|string name)
  1222. [DomDocument->create_entity_reference | , returns object]
  1223. DomDocument->create_entity_reference(|string content)
  1224. [DomDocument->create_processing_instruction | Creates new PI node, returns string]
  1225. DomDocument->create_processing_instruction(|string content)
  1226. [DomDocument->create_text_node | Create new text node, returns object]
  1227. DomDocument->create_text_node(|string content)
  1228. [DomDocument->doctype | Returns the document type, returns object]
  1229. DomDocument->doctype()|
  1230. [DomDocument->document_element | Returns root element node, returns object]
  1231. DomDocument->document_element()|
  1232. [DomDocument->dump_file | Dumps the internal XML tree back into a file, returns string]
  1233. DomDocument->dump_file(|string filename, [bool compressionmode], [bool format])
  1234. [DomDocument->dump_mem | Dumps the internal XML tree back into a string, returns string]
  1235. DomDocument->dump_mem(|[bool format], [string encoding])
  1236. [DomDocument->get_element_by_id | Searches for an element with a certain id, returns object]
  1237. DomDocument->get_element_by_id(|string id)
  1238. [DomDocument->get_elements_by_tagname | , returns array]
  1239. DomDocument->get_elements_by_tagname(|string name)
  1240. [DomDocument->html_dump_mem | Dumps the internal XML tree back into a string as HTML, returns string]
  1241. DomDocument->html_dump_mem()|
  1242. [DomDocument->xinclude | Substitutes XIncludes in a DomDocument Object., returns int]
  1243. DomDocument->xinclude()|
  1244. [DomDocumentType->entities | Returns list of entities, returns array]
  1245. DomDocumentType->entities()|
  1246. [DomDocumentType->internal_subset | Returns internal subset, returns bool]
  1247. DomDocumentType->internal_subset()|
  1248. [DomDocumentType->name | Returns name of document type, returns string]
  1249. DomDocumentType->name()|
  1250. [DomDocumentType->notations | Returns list of notations, returns array]
  1251. DomDocumentType->notations()|
  1252. [DomDocumentType->public_id | Returns public id of document type, returns string]
  1253. DomDocumentType->public_id()|
  1254. [DomDocumentType->system_id | Returns system id of document type, returns string]
  1255. DomDocumentType->system_id()|
  1256. [DomElement->get_attribute_node | Returns value of attribute, returns object]
  1257. DomElement->get_attribute_node(|object attr)
  1258. [DomElement->get_attribute | Returns value of attribute, returns object]
  1259. DomElement->get_attribute(|string name)
  1260. [DomElement->get_elements_by_tagname | Gets elements by tagname, returns bool]
  1261. DomElement->get_elements_by_tagname(|string name)
  1262. [DomElement->has_attribute | Checks to see if attribute exists, returns bool]
  1263. DomElement->has_attribute(|string name)
  1264. [DomElement->remove_attribute | Removes attribute, returns bool]
  1265. DomElement->remove_attribute(|string name)
  1266. [DomElement->set_attribute | Adds new attribute, returns bool]
  1267. DomElement->set_attribute(|string name, string value)
  1268. [DomElement->tagname | Returns name of element, returns string]
  1269. DomElement->tagname()|
  1270. [DomNode->add_namespace | Adds a namespace declaration to a node., returns bool]
  1271. DomNode->add_namespace(|string uri, string prefix)
  1272. [DomNode->append_child | Adds new child at the end of the children, returns object]
  1273. DomNode->append_child(|object newnode)
  1274. [DomNode->append_sibling | Adds new sibling to a node, returns object]
  1275. DomNode->append_sibling(|object newnode)
  1276. [DomNode->attributes | Returns list of attributes, returns array]
  1277. DomNode->attributes()|
  1278. [DomNode->child_nodes | Returns children of node, returns array]
  1279. DomNode->child_nodes()|
  1280. [DomNode->clone_node | Clones a node, returns object]
  1281. DomNode->clone_node()|
  1282. [DomNode->dump_node | Dumps a single node, returns string]
  1283. DomNode->dump_node()|
  1284. [DomNode->first_child | Returns first child of node, returns object]
  1285. DomNode->first_child()|
  1286. [DomNode->get_content | Gets content of node, returns string]
  1287. DomNode->get_content()|
  1288. [DomNode->has_attributes | Checks if node has attributes, returns bool]
  1289. DomNode->has_attributes()|
  1290. [DomNode->has_child_nodes | Checks if node has children, returns bool]
  1291. DomNode->has_child_nodes()|
  1292. [DomNode->insert_before | Inserts new node as child, returns object]
  1293. DomNode->insert_before(|object newnode, object refnode)
  1294. [DomNode->is_blank_node | Checks if node is blank, returns bool]
  1295. DomNode->is_blank_node()|
  1296. [DomNode->last_child | Returns last child of node, returns object]
  1297. DomNode->last_child()|
  1298. [DomNode->next_sibling | Returns the next sibling of node, returns object]
  1299. DomNode->next_sibling()|
  1300. [DomNode->node_name | Returns name of node, returns string]
  1301. DomNode->node_name()|
  1302. [DomNode->node_type | Returns type of node, returns int]
  1303. DomNode->node_type()|
  1304. [DomNode->node_value | Returns value of a node, returns string]
  1305. DomNode->node_value()|
  1306. [DomNode->owner_document | Returns the document this node belongs to, returns object]
  1307. DomNode->owner_document()|
  1308. [DomNode->parent_node | Returns the parent of the node, returns object]
  1309. DomNode->parent_node()|
  1310. [DomNode->prefix | Returns name space prefix of node, returns string]
  1311. DomNode->prefix()|
  1312. [DomNode->previous_sibling | Returns the previous sibling of node, returns object]
  1313. DomNode->previous_sibling()|
  1314. [DomNode->remove_child | Removes child from list of children, returns object]
  1315. DomNode->remove_child(|object oldchild)
  1316. [DomNode->replace_child | Replaces a child, returns object]
  1317. DomNode->replace_child(|object oldnode, object newnode)
  1318. [DomNode->replace_node | Replaces node, returns object]
  1319. DomNode->replace_node(|object newnode)
  1320. [DomNode->set_content | Sets content of node, returns bool]
  1321. DomNode->set_content()|
  1322. [DomNode->set_name | Sets name of node, returns bool]
  1323. DomNode->set_name()|
  1324. [DomNode->set_namespace | Sets namespace of a node., returns void]
  1325. DomNode->set_namespace(|string uri, [string prefix])
  1326. [DomNode->unlink_node | Deletes node, returns object]
  1327. DomNode->unlink_node()|
  1328. [DomProcessingInstruction->data | Returns data of pi node, returns string]
  1329. DomProcessingInstruction->data()|
  1330. [DomProcessingInstruction->target | Returns target of pi node, returns string]
  1331. DomProcessingInstruction->target()|
  1332. [DomXsltStylesheet->process | Applies the XSLT-Transformation on a DomDocument Object., returns object]
  1333. DomXsltStylesheet->process(|object DomDocument, [array xslt_parameters], [bool param_is_xpath])
  1334. [DomXsltStylesheet->result_dump_file | Dumps the result from a XSLT-Transformation into a file, returns string]
  1335. DomXsltStylesheet->result_dump_file(|object DomDocument, string filename)
  1336. [DomXsltStylesheet->result_dump_mem | Dumps the result from a XSLT-Transformation back into a string, returns string]
  1337. DomXsltStylesheet->result_dump_mem(|object DomDocument)
  1338. [domxml_new_doc | Creates new empty XML document, returns object]
  1339. domxml_new_doc(|string version)
  1340. [domxml_open_file | Creates a DOM object from XML file, returns object]
  1341. domxml_open_file(|string filename)
  1342. [domxml_open_mem | Creates a DOM object of an XML document, returns object]
  1343. domxml_open_mem(|string str)
  1344. [domxml_version | Get XML library version, returns string]
  1345. domxml_version()|
  1346. [domxml_xmltree | Creates a tree of PHP objects from an XML document, returns object]
  1347. domxml_xmltree(|string str)
  1348. [domxml_xslt_stylesheet_doc | Creates a DomXsltStylesheet Object from a DomDocument Object., returns object]
  1349. domxml_xslt_stylesheet_doc(|object DocDocument Object)
  1350. [domxml_xslt_stylesheet_file | Creates a DomXsltStylesheet Object from a xsl document in a file., returns object]
  1351. domxml_xslt_stylesheet_file(|string xsl file)
  1352. [domxml_xslt_stylesheet | Creates a DomXsltStylesheet Object from a xml document in a string., returns object]
  1353. domxml_xslt_stylesheet(|string xsl document)
  1354. [xpath_eval_expression | Evaluates the XPath Location Path in the given string, returns array]
  1355. xpath_eval_expression(|object xpath_context)
  1356. [xpath_eval | Evaluates the XPath Location Path in the given string, returns array]
  1357. xpath_eval(|object xpath context, string xpath expression, [object contextnode])
  1358. [xpath_new_context | Creates new xpath context, returns object]
  1359. xpath_new_context(|object dom document)
  1360. [xptr_eval | Evaluate the XPtr Location Path in the given string, returns int]
  1361. xptr_eval(|[object xpath_context], string eval_str)
  1362. [xptr_new_context | Create new XPath Context, returns string]
  1363. xptr_new_context(|[object doc_handle])
  1364. ; -----------------------------------------------------------------------------
  1365. ; .NET - .NET functions
  1366. ; -----------------------------------------------------------------------------
  1367. [dotnet_load | Loads a DOTNET module, returns int]
  1368. dotnet_load(|string assembly_name, [string datatype_name], [int codepage])
  1369. ; -----------------------------------------------------------------------------
  1370. ; Errors and Logging - Error Handling and Logging Functions
  1371. ; -----------------------------------------------------------------------------
  1372. [debug_backtrace | Generates a backtrace, returns array]
  1373. debug_backtrace()|
  1374. [debug_print_backtrace | Prints a backtrace, returns void]
  1375. debug_print_backtrace()|
  1376. [error_log | Send an error message somewhere, returns int]
  1377. error_log(|string message, [int message_type], [string destination], [string extra_headers])
  1378. [error_reporting | Sets which PHP errors are reported, returns int]
  1379. error_reporting(|[int level])
  1380. [restore_error_handler | Restores the previous error handler function, returns void]
  1381. restore_error_handler()|
  1382. [set_error_handler | Sets a user-defined error handler function., returns string]
  1383. set_error_handler(|callback error_handler)
  1384. [trigger_error | Generates a user-level error/warning/notice message, returns void]
  1385. trigger_error(|string error_msg, [int error_type])
  1386. [user_error | Alias of trigger_error]
  1387. user_error(|)
  1388. ; -----------------------------------------------------------------------------
  1389. ; fam - File alteration monitor functions
  1390. ; -----------------------------------------------------------------------------
  1391. [fam_cancel_monitor | Terminate monitoring, returns bool]
  1392. fam_cancel_monitor(|resource fam, resource fam_monitor)
  1393. [fam_close | Close FAM connection]
  1394. fam_close(|resource fam)
  1395. [fam_monitor_collection | Monitor a collection of files in a directory for changes, returns resource]
  1396. fam_monitor_collection(|resource fam, string dirname, int depth, string mask)
  1397. [fam_monitor_directory | Monitor a directory for changes, returns resource]
  1398. fam_monitor_directory(|resource fam, string dirname)
  1399. [fam_monitor_file | Monitor a regular file for changes, returns resource]
  1400. fam_monitor_file(|resource fam, string filename)
  1401. [fam_next_event | ..., returns array]
  1402. fam_next_event(|resource fam)
  1403. [fam_open | Open connection to FAM daemon, returns resource]
  1404. fam_open(|[string appname])
  1405. [fam_pending | Check for pending FAM events, returns bool]
  1406. fam_pending(|resource fam)
  1407. [fam_resume_monitor | Resume suspended monitoring, returns bool]
  1408. fam_resume_monitor(|resource fam, resource fam_monitor)
  1409. [fam_suspend_monitor | Temporarily suspend monitoring, returns bool]
  1410. fam_suspend_monitor(|resource fam, resource fam_monitor)
  1411. ; -----------------------------------------------------------------------------
  1412. ; FrontBase - FrontBase Functions
  1413. ; -----------------------------------------------------------------------------
  1414. [fbsql_affected_rows | Get number of affected rows in previous FrontBase operation, returns int]
  1415. fbsql_affected_rows(|[resource link_identifier])
  1416. [fbsql_autocommit | Enable or disable autocommit, returns bool]
  1417. fbsql_autocommit(|resource link_identifier, [bool OnOff])
  1418. [fbsql_change_user | Change logged in user of the active connection, returns resource]
  1419. fbsql_change_user(|string user, string password, [string database], [resource link_identifier])
  1420. [fbsql_close | Close FrontBase connection, returns bool]
  1421. fbsql_close(|[resource link_identifier])
  1422. [fbsql_commit | Commits a transaction to the database, returns bool]
  1423. fbsql_commit(|[resource link_identifier])
  1424. [fbsql_connect | Open a connection to a FrontBase Server, returns resource]
  1425. fbsql_connect(|[string hostname], [string username], [string password])
  1426. [fbsql_create_blob | Create a BLOB, returns string]
  1427. fbsql_create_blob(|string blob_data, [resource link_identifier])
  1428. [fbsql_create_clob | Create a CLOB, returns string]
  1429. fbsql_create_clob(|string clob_data, [resource link_identifier])
  1430. [fbsql_create_db | Create a FrontBase database, returns bool]
  1431. fbsql_create_db(|string database_name, [resource link_identifier])
  1432. [fbsql_data_seek | Move internal result pointer, returns bool]
  1433. fbsql_data_seek(|resource result_identifier, int row_number)
  1434. [fbsql_database_password | Sets or retrieves the password for a FrontBase database, returns string]
  1435. fbsql_database_password(|resource link_identifier, [string database_password])
  1436. [fbsql_database | Get or set the database name used with a connection, returns string]
  1437. fbsql_database(|resource link_identifier, [string database])
  1438. [fbsql_db_query | Send a FrontBase query, returns resource]
  1439. fbsql_db_query(|string database, string query, [resource link_identifier])
  1440. [fbsql_db_status | Get the status for a given database, returns int]
  1441. fbsql_db_status(|string database_name, [resource link_identifier])
  1442. [fbsql_drop_db | Drop (delete) a FrontBase database, returns bool]
  1443. fbsql_drop_db(|string database_name, [resource link_identifier])
  1444. [fbsql_errno | Returns the numerical value of the error message from previous FrontBase operation, returns int]
  1445. fbsql_errno(|[resource link_identifier])
  1446. [fbsql_error | Returns the text of the error message from previous FrontBase operation, returns string]
  1447. fbsql_error(|[resource link_identifier])
  1448. [fbsql_fetch_array | Fetch a result row as an associative array, a numeric array, or both, returns array]
  1449. fbsql_fetch_array(|resource result, [int result_type])
  1450. [fbsql_fetch_assoc | Fetch a result row as an associative array, returns array]
  1451. fbsql_fetch_assoc(|resource result)
  1452. [fbsql_fetch_field | Get column information from a result and return as an object, returns object]
  1453. fbsql_fetch_field(|resource result, [int field_offset])
  1454. [fbsql_fetch_lengths | Get the length of each output in a result, returns array]
  1455. fbsql_fetch_lengths(|[resource result])
  1456. [fbsql_fetch_object | Fetch a result row as an object, returns object]
  1457. fbsql_fetch_object(|resource result, [int result_type])
  1458. [fbsql_fetch_row | Get a result row as an enumerated array, returns array]
  1459. fbsql_fetch_row(|resource result)
  1460. [fbsql_field_flags | Get the flags associated with the specified field in a result, returns string]
  1461. fbsql_field_flags(|resource result, int field_offset)
  1462. [fbsql_field_len | Returns the length of the specified field, returns int]
  1463. fbsql_field_len(|resource result, int field_offset)
  1464. [fbsql_field_name | Get the name of the specified field in a result, returns string]
  1465. fbsql_field_name(|resource result, int field_index)
  1466. [fbsql_field_seek | Set result pointer to a specified field offset, returns bool]
  1467. fbsql_field_seek(|resource result, int field_offset)
  1468. [fbsql_field_table | Get name of the table the specified field is in, returns string]
  1469. fbsql_field_table(|resource result, int field_offset)
  1470. [fbsql_field_type | Get the type of the specified field in a result, returns string]
  1471. fbsql_field_type(|resource result, int field_offset)
  1472. [fbsql_free_result | Free result memory, returns bool]
  1473. fbsql_free_result(|resource result)
  1474. [fbsql_get_autostart_info | No description given yet, returns array]
  1475. fbsql_get_autostart_info(|[resource link_identifier])
  1476. [fbsql_hostname | Get or set the host name used with a connection, returns string]
  1477. fbsql_hostname(|resource link_identifier, [string host_name])
  1478. [fbsql_insert_id | Get the id generated from the previous INSERT operation, returns int]
  1479. fbsql_insert_id(|[resource link_identifier])
  1480. [fbsql_list_dbs | List databases available on a FrontBase server, returns resource]
  1481. fbsql_list_dbs(|[resource link_identifier])
  1482. [fbsql_list_fields | List FrontBase result fields, returns resource]
  1483. fbsql_list_fields(|string database_name, string table_name, [resource link_identifier])
  1484. [fbsql_list_tables | List tables in a FrontBase database, returns resource]
  1485. fbsql_list_tables(|string database, [resource link_identifier])
  1486. [fbsql_next_result | Move the internal result pointer to the next result, returns bool]
  1487. fbsql_next_result(|resource result_id)
  1488. [fbsql_num_fields | Get number of fields in result, returns int]
  1489. fbsql_num_fields(|resource result)
  1490. [fbsql_num_rows | Get number of rows in result, returns int]
  1491. fbsql_num_rows(|resource result)
  1492. [fbsql_password | Get or set the user password used with a connection, returns string]
  1493. fbsql_password(|resource link_identifier, [string password])
  1494. [fbsql_pconnect | Open a persistent connection to a FrontBase Server, returns resource]
  1495. fbsql_pconnect(|[string hostname], [string username], [string password])
  1496. [fbsql_query | Send a FrontBase query, returns resource]
  1497. fbsql_query(|string query, [resource link_identifier])
  1498. [fbsql_read_blob | Read a BLOB from the database, returns string]
  1499. fbsql_read_blob(|string blob_handle, [resource link_identifier])
  1500. [fbsql_read_clob | Read a CLOB from the database, returns string]
  1501. fbsql_read_clob(|string clob_handle, [resource link_identifier])
  1502. [fbsql_result | Get result data, returns mixed]
  1503. fbsql_result(|resource result, int row, [mixed field])
  1504. [fbsql_rollback | Rollback a transaction to the database, returns bool]
  1505. fbsql_rollback(|[resource link_identifier])
  1506. [fbsql_select_db | Select a FrontBase database, returns bool]
  1507. fbsql_select_db(|string database_name, [resource link_identifier])
  1508. [fbsql_set_lob_mode | Set the LOB retrieve mode for a FrontBase result set, returns bool]
  1509. fbsql_set_lob_mode(|resource result, string database_name)
  1510. [fbsql_set_transaction | Set the transaction locking and isolation, returns void]
  1511. fbsql_set_transaction(|resource link_identifier, int Locking, int Isolation)
  1512. [fbsql_start_db | Start a database on local or remote server, returns bool]
  1513. fbsql_start_db(|string database_name, [resource link_identifier])
  1514. [fbsql_stop_db | Stop a database on local or remote server, returns bool]
  1515. fbsql_stop_db(|string database_name, [resource link_identifier])
  1516. [fbsql_tablename | Get table name of field, returns string]
  1517. fbsql_tablename(|resource result, int i)
  1518. [fbsql_username | Get or set the host user used with a connection, returns string]
  1519. fbsql_username(|resource link_identifier, [string username])
  1520. [fbsql_warnings | Enable or disable FrontBase warnings, returns bool]
  1521. fbsql_warnings(|[bool OnOff])
  1522. ; -----------------------------------------------------------------------------
  1523. ; filePro - filePro functions
  1524. ; -----------------------------------------------------------------------------
  1525. [filepro_fieldcount | Find out how many fields are in a filePro database, returns int]
  1526. filepro_fieldcount()|
  1527. [filepro_fieldname | Gets the name of a field, returns string]
  1528. filepro_fieldname(|int field_number)
  1529. [filepro_fieldtype | Gets the type of a field, returns string]
  1530. filepro_fieldtype(|int field_number)
  1531. [filepro_fieldwidth | Gets the width of a field, returns int]
  1532. filepro_fieldwidth(|int field_number)
  1533. [filepro_retrieve | Retrieves data from a filePro database, returns string]
  1534. filepro_retrieve(|int row_number, int field_number)
  1535. [filepro_rowcount | Find out how many rows are in a filePro database, returns int]
  1536. filepro_rowcount()|
  1537. [filepro | Read and verify the map file, returns bool]
  1538. filepro(|string directory)
  1539. ; -----------------------------------------------------------------------------
  1540. ; Filesystem - Filesystem functions
  1541. ; -----------------------------------------------------------------------------
  1542. [basename | Returns filename component of path, returns string]
  1543. basename(|string path, [string suffix])
  1544. [chgrp | Changes file group, returns bool]
  1545. chgrp(|string filename, mixed group)
  1546. [chmod | Changes file mode, returns bool]
  1547. chmod(|string filename, int mode)
  1548. [chown | Changes file owner, returns bool]
  1549. chown(|string filename, mixed user)
  1550. [clearstatcache | Clears file status cache, returns void]
  1551. clearstatcache()|
  1552. [copy | Copies file, returns bool]
  1553. copy(|string source, string dest)
  1554. [delete | See unlink or unset, returns void]
  1555. delete(|string file)
  1556. [dirname | Returns directory name component of path, returns string]
  1557. dirname(|string path)
  1558. [disk_free_space | Returns available space in directory, returns float]
  1559. disk_free_space(|string directory)
  1560. [disk_total_space | Returns the total size of a directory, returns float]
  1561. disk_total_space(|string directory)
  1562. [diskfreespace | Alias of disk_free_space]
  1563. diskfreespace(|)
  1564. [fclose | Closes an open file pointer, returns bool]
  1565. fclose(|resource handle)
  1566. [feof | Tests for end-of-file on a file pointer, returns bool]
  1567. feof(|resource handle)
  1568. [fflush | Flushes the output to a file, returns bool]
  1569. fflush(|resource handle)
  1570. [fgetc | Gets character from file pointer, returns string]
  1571. fgetc(|resource handle)
  1572. [fgetcsv | Gets line from file pointer and parse for CSV fields, returns array]
  1573. fgetcsv(|resource handle, int length, [string delimiter], [string enclosure])
  1574. [fgets | Gets line from file pointer, returns string]
  1575. fgets(|resource handle, [int length])
  1576. [fgetss | Gets line from file pointer and strip HTML tags, returns string]
  1577. fgetss(|resource handle, int length, [string allowable_tags])
  1578. [file_exists | Checks whether a file or directory exists, returns bool]
  1579. file_exists(|string filename)
  1580. [file_get_contents | Reads entire file into a string, returns string]
  1581. file_get_contents(|string filename, [int use_include_path], [resource context])
  1582. [file_put_contents | Write a string to a file, returns int]
  1583. file_put_contents(|string filename, string data, [int flags], [resource context])
  1584. [file | Reads entire file into an array, returns array]
  1585. file(|string filename, [int use_include_path], [resource context])
  1586. [fileatime | Gets last access time of file, returns int]
  1587. fileatime(|string filename)
  1588. [filectime | Gets inode change time of file, returns int]
  1589. filectime(|string filename)
  1590. [filegroup | Gets file group, returns int]
  1591. filegroup(|string filename)
  1592. [fileinode | Gets file inode, returns int]
  1593. fileinode(|string filename)
  1594. [filemtime | Gets file modification time, returns int]
  1595. filemtime(|string filename)
  1596. [fileowner | Gets file owner, returns int]
  1597. fileowner(|string filename)
  1598. [fileperms | Gets file permissions, returns int]
  1599. fileperms(|string filename)
  1600. [filesize | Gets file size, returns int]
  1601. filesize(|string filename)
  1602. [filetype | Gets file type, returns string]
  1603. filetype(|string filename)
  1604. [flock | Portable advisory file locking, returns bool]
  1605. flock(|resource handle, int operation, [int &wouldblock])
  1606. [fnmatch | Match filename against a pattern, returns array]
  1607. fnmatch(|string pattern, string string, [int flags])
  1608. [fopen | Opens file or URL, returns resource]
  1609. fopen(|string filename, string mode, [int use_include_path], [resource zcontext])
  1610. [fpassthru | Output all remaining data on a file pointer, returns int]
  1611. fpassthru(|resource handle)
  1612. [fputs | Alias of fwrite]
  1613. fputs(|)
  1614. [fread | Binary-safe file read, returns string]
  1615. fread(|resource handle, int length)
  1616. [fscanf | Parses input from a file according to a format, returns mixed]
  1617. fscanf(|resource handle, string format, [string var1])
  1618. [fseek | Seeks on a file pointer, returns int]
  1619. fseek(|resource handle, int offset, [int whence])
  1620. [fstat | Gets information about a file using an open file pointer, returns array]
  1621. fstat(|resource handle)
  1622. [ftell | Tells file pointer read/write position, returns int]
  1623. ftell(|resource handle)
  1624. [ftruncate | Truncates a file to a given length, returns bool]
  1625. ftruncate(|resource handle, int size)
  1626. [fwrite | Binary-safe file write, returns int]
  1627. fwrite(|resource handle, string string, [int length])
  1628. [glob | Find pathnames matching a pattern, returns array]
  1629. glob(|string pattern, [int flags])
  1630. [is_dir | Tells whether the filename is a directory, returns bool]
  1631. is_dir(|string filename)
  1632. [is_executable | Tells whether the filename is executable, returns bool]
  1633. is_executable(|string filename)
  1634. [is_file | Tells whether the filename is a regular file, returns bool]
  1635. is_file(|string filename)
  1636. [is_link | Tells whether the filename is a symbolic link, returns bool]
  1637. is_link(|string filename)
  1638. [is_readable | Tells whether the filename is readable, returns bool]
  1639. is_readable(|string filename)
  1640. [is_uploaded_file | Tells whether the file was uploaded via HTTP POST, returns bool]
  1641. is_uploaded_file(|string filename)
  1642. [is_writable | Tells whether the filename is writable, returns bool]
  1643. is_writable(|string filename)
  1644. [is_writeable | Alias of is_writable]
  1645. is_writeable(|)
  1646. [link | Create a hard link, returns bool]
  1647. link(|string target, string link)
  1648. [linkinfo | Gets information about a link, returns int]
  1649. linkinfo(|string path)
  1650. [lstat | Gives information about a file or symbolic link, returns array]
  1651. lstat(|string filename)
  1652. [mkdir | Makes directory, returns bool]
  1653. mkdir(|string pathname, [int mode])
  1654. [move_uploaded_file | Moves an uploaded file to a new location, returns bool]
  1655. move_uploaded_file(|string filename, string destination)
  1656. [parse_ini_file | Parse a configuration file, returns array]
  1657. parse_ini_file(|string filename, [bool process_sections])
  1658. [pathinfo | Returns information about a file path, returns array]
  1659. pathinfo(|string path)
  1660. [pclose | Closes process file pointer, returns int]
  1661. pclose(|resource handle)
  1662. [popen | Opens process file pointer, returns resource]
  1663. popen(|string command, string mode)
  1664. [readfile | Outputs a file, returns int]
  1665. readfile(|string filename, [bool use_include_path], [resource context])
  1666. [readlink | Returns the target of a symbolic link, returns string]
  1667. readlink(|string path)
  1668. [realpath | Returns canonicalized absolute pathname, returns string]
  1669. realpath(|string path)
  1670. [rename | Renames a file, returns bool]
  1671. rename(|string oldname, string newname)
  1672. [rewind | Rewind the position of a file pointer, returns bool]
  1673. rewind(|resource handle)
  1674. [rmdir | Removes directory, returns bool]
  1675. rmdir(|string dirname)
  1676. [set_file_buffer | Alias of stream_set_write_buffer]
  1677. set_file_buffer(|)
  1678. [stat | Gives information about a file, returns array]
  1679. stat(|string filename)
  1680. [symlink | Creates a symbolic link, returns bool]
  1681. symlink(|string target, string link)
  1682. [tempnam | Create file with unique file name, returns string]
  1683. tempnam(|string dir, string prefix)
  1684. [tmpfile | Creates a temporary file, returns resource]
  1685. tmpfile()|
  1686. [touch | Sets access and modification time of file, returns bool]
  1687. touch(|string filename, [int time], [int atime])
  1688. [umask | Changes the current umask, returns int]
  1689. umask(|[int mask])
  1690. [unlink | Deletes a file, returns bool]
  1691. unlink(|string filename)
  1692. ; -----------------------------------------------------------------------------
  1693. ; FDF - Forms Data Format functions
  1694. ; -----------------------------------------------------------------------------
  1695. [fdf_add_doc_javascript | Adds javascript code to the FDF document, returns bool]
  1696. fdf_add_doc_javascript(|resource fdfdoc, string script_name, string script_code)
  1697. [fdf_add_template | Adds a template into the FDF document, returns bool]
  1698. fdf_add_template(|resource fdfdoc, int newpage, string filename, string template, int rename)
  1699. [fdf_close | Close an FDF document, returns bool]
  1700. fdf_close(|resource fdf_document)
  1701. [fdf_create | Create a new FDF document, returns resource]
  1702. fdf_create()|
  1703. [fdf_enum_values | Call a user defined function for each document value, returns bool]
  1704. fdf_enum_values(|resource fdfdoc, callback function, [mixed userdata])
  1705. [fdf_errno | Return error code for last fdf operation, returns int]
  1706. fdf_errno()|
  1707. [fdf_error | Return error description for fdf error code, returns string]
  1708. fdf_error(|[int error_code])
  1709. [fdf_get_ap | Get the appearance of a field, returns bool]
  1710. fdf_get_ap(|resource fdf_document, string field, int face, string filename)
  1711. [fdf_get_attachment | Extracts uploaded file embedded in the FDF, returns array]
  1712. fdf_get_attachment(|resource fdf_document, string fieldname, string savepath)
  1713. [fdf_get_encoding | Get the value of the /Encoding key, returns string]
  1714. fdf_get_encoding(|resource fdf_document)
  1715. [fdf_get_file | Get the value of the /F key, returns string]
  1716. fdf_get_file(|resource fdf_document)
  1717. [fdf_get_flags | Gets the flags of a field, returns ]
  1718. fdf_get_flags()|
  1719. [fdf_get_opt | Gets a value from the opt array of a field, returns mixed]
  1720. fdf_get_opt(|resource fdfdof, string fieldname, [int element])
  1721. [fdf_get_status | Get the value of the /STATUS key, returns string]
  1722. fdf_get_status(|resource fdf_document)
  1723. [fdf_get_value | Get the value of a field, returns string]
  1724. fdf_get_value(|resource fdf_document, string fieldname, [int which])
  1725. [fdf_get_version | Gets version number for FDF api or file, returns string]
  1726. fdf_get_version(|[resource fdf_document])
  1727. [fdf_header | Sets FDF-specific output headers, returns bool]
  1728. fdf_header()|
  1729. [fdf_next_field_name | Get the next field name, returns string]
  1730. fdf_next_field_name(|resource fdf_document, [string fieldname])
  1731. [fdf_open_string | Read a FDF document from a string, returns resource]
  1732. fdf_open_string(|string fdf_data)
  1733. [fdf_open | Open a FDF document, returns resource]
  1734. fdf_open(|string filename)
  1735. [fdf_remove_item | Sets target frame for form, returns bool]
  1736. fdf_remove_item(|resource fdfdoc, string fieldname, int item)
  1737. [fdf_save_string | Returns the FDF document as a string, returns string]
  1738. fdf_save_string(|resource fdf_document)
  1739. [fdf_save | Save a FDF document, returns bool]
  1740. fdf_save(|resource fdf_document, [string filename])
  1741. [fdf_set_ap | Set the appearance of a field, returns bool]
  1742. fdf_set_ap(|resource fdf_document, string field_name, int face, string filename, int page_number)
  1743. [fdf_set_encoding | Sets FDF character encoding, returns bool]
  1744. fdf_set_encoding(|resource fdf_document, string encoding)
  1745. [fdf_set_file | Set PDF document to display FDF data in, returns bool]
  1746. fdf_set_file(|resource fdf_document, string url, [string target_frame])
  1747. [fdf_set_flags | Sets a flag of a field, returns bool]
  1748. fdf_set_flags(|resource fdf_document, string fieldname, int whichFlags, int newFlags)
  1749. [fdf_set_javascript_action | Sets an javascript action of a field, returns bool]
  1750. fdf_set_javascript_action(|resource fdf_document, string fieldname, int trigger, string script)
  1751. [fdf_set_opt | Sets an option of a field, returns bool]
  1752. fdf_set_opt(|resource fdf_document, string fieldname, int element, string str1, string str2)
  1753. [fdf_set_status | Set the value of the /STATUS key, returns bool]
  1754. fdf_set_status(|resource fdf_document, string status)
  1755. [fdf_set_submit_form_action | Sets a submit form action of a field, returns bool]
  1756. fdf_set_submit_form_action(|resource fdf_document, string fieldname, int trigger, string script, int flags)
  1757. [fdf_set_target_frame | Set target frame for form display, returns bool]
  1758. fdf_set_target_frame(|resource fdf_document, string frame_name)
  1759. [fdf_set_value | Set the value of a field, returns bool]
  1760. fdf_set_value(|resource fdf_document, string fieldname, mixed value, [int isName])
  1761. [fdf_set_version | Sets version number for a FDF file, returns string]
  1762. fdf_set_version(|resource fdf_document, string version)
  1763. ; -----------------------------------------------------------------------------
  1764. ; FriBiDi - FriBiDi functions
  1765. ; -----------------------------------------------------------------------------
  1766. [fribidi_log2vis | Convert a logical string to a visual one, returns string]
  1767. fribidi_log2vis(|string str, string direction, int charset)
  1768. ; -----------------------------------------------------------------------------
  1769. ; FTP - FTP functions
  1770. ; -----------------------------------------------------------------------------
  1771. [ftp_alloc | Allocates space for a file to be uploaded., returns bool]
  1772. ftp_alloc(|resource ftp_stream, int filesize, [string &result])
  1773. [ftp_cdup | Changes to the parent directory, returns bool]
  1774. ftp_cdup(|resource ftp_stream)
  1775. [ftp_chdir | Changes directories on a FTP server, returns bool]
  1776. ftp_chdir(|resource ftp_stream, string directory)
  1777. [ftp_chmod | Set permissions on a file via FTP, returns string]
  1778. ftp_chmod(|resource ftp_stream, int mode, string filename)
  1779. [ftp_close | Closes an FTP connection, returns void]
  1780. ftp_close(|resource ftp_stream)
  1781. [ftp_connect | Opens an FTP connection, returns resource]
  1782. ftp_connect(|string host, [int port], [int timeout])
  1783. [ftp_delete | Deletes a file on the FTP server, returns bool]
  1784. ftp_delete(|resource ftp_stream, string path)
  1785. [ftp_exec | Requests execution of a program on the FTP server, returns bool]
  1786. ftp_exec(|resource ftp_stream, string command)
  1787. [ftp_fget | Downloads a file from the FTP server and saves to an open file, returns bool]
  1788. ftp_fget(|resource ftp_stream, resource handle, string remote_file, int mode, [int resumepos])
  1789. [ftp_fput | Uploads from an open file to the FTP server, returns bool]
  1790. ftp_fput(|resource ftp_stream, string remote_file, resource handle, int mode, [int startpos])
  1791. [ftp_get_option | Retrieves various runtime behaviours of the current FTP stream, returns mixed]
  1792. ftp_get_option(|resource ftp_stream, int option)
  1793. [ftp_get | Downloads a file from the FTP server, returns bool]
  1794. ftp_get(|resource ftp_stream, string local_file, string remote_file, int mode, [int resumepos])
  1795. [ftp_login | Logs in to an FTP connection, returns bool]
  1796. ftp_login(|resource ftp_stream, string username, string password)
  1797. [ftp_mdtm | Returns the last modified time of the given file, returns int]
  1798. ftp_mdtm(|resource ftp_stream, string remote_file)
  1799. [ftp_mkdir | Creates a directory, returns string]
  1800. ftp_mkdir(|resource ftp_stream, string directory)
  1801. [ftp_nb_continue | Continues retrieving/sending a file (non-blocking), returns int]
  1802. ftp_nb_continue(|resource ftp_stream)
  1803. [ftp_nb_fget | Retrieves a file from the FTP server and writes it to an open file (non-blocking), returns int]
  1804. ftp_nb_fget(|resource ftp_stream, resource handle, string remote_file, int mode, [int resumepos])
  1805. [ftp_nb_fput | Stores a file from an open file to the FTP server (non-blocking), returns int]
  1806. ftp_nb_fput(|resource ftp_stream, string remote_file, resource handle, int mode, [int startpos])
  1807. [ftp_nb_get | Retrieves a file from the FTP server and writes it to a local file (non-blocking), returns int]
  1808. ftp_nb_get(|resource ftp_stream, string local_file, string remote_file, int mode, [int resumepos])
  1809. [ftp_nb_put | Stores a file on the FTP server (non-blocking), returns int]
  1810. ftp_nb_put(|resource ftp_stream, string remote_file, string local_file, int mode, [int startpos])
  1811. [ftp_nlist | Returns a list of files in the given directory, returns array]
  1812. ftp_nlist(|resource ftp_stream, string directory)
  1813. [ftp_pasv | Turns passive mode on or off, returns bool]
  1814. ftp_pasv(|resource ftp_stream, bool pasv)
  1815. [ftp_put | Uploads a file to the FTP server, returns bool]
  1816. ftp_put(|resource ftp_stream, string remote_file, string local_file, int mode, [int startpos])
  1817. [ftp_pwd | Returns the current directory name, returns string]
  1818. ftp_pwd(|resource ftp_stream)
  1819. [ftp_quit | Alias of ftp_close]
  1820. ftp_quit(|)
  1821. [ftp_raw | Sends an arbitrary command to an FTP server, returns array]
  1822. ftp_raw(|resource ftp_stream, string command)
  1823. [ftp_rawlist | Returns a detailed list of files in the given directory, returns array]
  1824. ftp_rawlist(|resource ftp_stream, string directory)
  1825. [ftp_rename | Renames a file on the FTP server, returns bool]
  1826. ftp_rename(|resource ftp_stream, string from, string to)
  1827. [ftp_rmdir | Removes a directory, returns bool]
  1828. ftp_rmdir(|resource ftp_stream, string directory)
  1829. [ftp_set_option | Set miscellaneous runtime FTP options, returns bool]
  1830. ftp_set_option(|resource ftp_stream, int option, mixed value)
  1831. [ftp_site | Sends a SITE command to the server, returns bool]
  1832. ftp_site(|resource ftp_stream, string cmd)
  1833. [ftp_size | Returns the size of the given file, returns int]
  1834. ftp_size(|resource ftp_stream, string remote_file)
  1835. [ftp_ssl_connect | Opens an Secure SSL-FTP connection, returns resource]
  1836. ftp_ssl_connect(|string host, [int port], [int timeout])
  1837. [ftp_systype | Returns the system type identifier of the remote FTP server, returns string]
  1838. ftp_systype(|resource ftp_stream)
  1839. ; -----------------------------------------------------------------------------
  1840. ; Function handling - Function Handling functions
  1841. ; -----------------------------------------------------------------------------
  1842. [call_user_func_array | Call a user function given with an array of parameters, returns mixed]
  1843. call_user_func_array(|callback function, [array param_arr])
  1844. [call_user_func | Call a user function given by the first parameter, returns mixed]
  1845. call_user_func(|callback function, [mixed parameter], [mixed ...])
  1846. [create_function | Create an anonymous (lambda-style) function, returns string]
  1847. create_function(|string args, string code)
  1848. [func_get_arg | Return an item from the argument list, returns mixed]
  1849. func_get_arg(|int arg_num)
  1850. [func_get_args | Returns an array comprising a function's argument list, returns array]
  1851. func_get_args()|
  1852. [func_num_args | Returns the number of arguments passed to the function, returns int]
  1853. func_num_args()|
  1854. [function_exists | Return TRUE if the given function has been defined, returns bool]
  1855. function_exists(|string function_name)
  1856. [get_defined_functions | Returns an array of all defined functions, returns array]
  1857. get_defined_functions()|
  1858. [register_shutdown_function | Register a function for execution on shutdown, returns void]
  1859. register_shutdown_function(|callback function)
  1860. [register_tick_function | Register a function for execution on each tick, returns void]
  1861. register_tick_function(|callback function, [mixed arg])
  1862. [unregister_tick_function | De-register a function for execution on each tick, returns void]
  1863. unregister_tick_function(|string function_name)
  1864. ; -----------------------------------------------------------------------------
  1865. ; gettext - Gettext
  1866. ; -----------------------------------------------------------------------------
  1867. [bind_textdomain_codeset | Specify the character encoding in which the messages from the DOMAIN message catalog will be returned, returns string]
  1868. bind_textdomain_codeset(|string domain, string codeset)
  1869. [bindtextdomain | Sets the path for a domain, returns string]
  1870. bindtextdomain(|string domain, string directory)
  1871. [dcgettext | Overrides the domain for a single lookup, returns string]
  1872. dcgettext(|string domain, string message, int category)
  1873. [dcngettext | Plural version of dcgettext, returns string]
  1874. dcngettext(|string domain, string msgid1, string msgid2, int n, int category)
  1875. [dgettext | Override the current domain, returns string]
  1876. dgettext(|string domain, string message)
  1877. [dngettext | Plural version of dgettext, returns string]
  1878. dngettext(|string domain, string msgid1, string msgid2, int n)
  1879. [gettext | Lookup a message in the current domain, returns string]
  1880. gettext(|string message)
  1881. [ngettext | Plural version of gettext, returns string]
  1882. ngettext(|string msgid1, string msgid2, int n)
  1883. [textdomain | Sets the default domain, returns string]
  1884. textdomain(|string text_domain)
  1885. ; -----------------------------------------------------------------------------
  1886. ; GMP - GMP functions
  1887. ; -----------------------------------------------------------------------------
  1888. [gmp_abs | Absolute value, returns resource]
  1889. gmp_abs(|resource a)
  1890. [gmp_add | Add numbers, returns resource]
  1891. gmp_add(|resource a, resource b)
  1892. [gmp_and | Logical AND, returns resource]
  1893. gmp_and(|resource a, resource b)
  1894. [gmp_clrbit | Clear bit, returns resource]
  1895. gmp_clrbit(|resource &a, int index)
  1896. [gmp_cmp | Compare numbers, returns int]
  1897. gmp_cmp(|resource a, resource b)
  1898. [gmp_com | Calculates one's complement of a, returns resource]
  1899. gmp_com(|resource a)
  1900. [gmp_div_q | Divide numbers, returns resource]
  1901. gmp_div_q(|resource a, resource b, [int round])
  1902. [gmp_div_qr | Divide numbers and get quotient and remainder, returns array]
  1903. gmp_div_qr(|resource n, resource d, [int round])
  1904. [gmp_div_r | Remainder of the division of numbers, returns resource]
  1905. gmp_div_r(|resource n, resource d, [int round])
  1906. [gmp_div | Alias of gmp_div_q]
  1907. gmp_div(|)
  1908. [gmp_divexact | Exact division of numbers, returns resource]
  1909. gmp_divexact(|resource n, resource d)
  1910. [gmp_fact | Factorial, returns resource]
  1911. gmp_fact(|int a)
  1912. [gmp_gcd | Calculate GCD, returns resource]
  1913. gmp_gcd(|resource a, resource b)
  1914. [gmp_gcdext | Calculate GCD and multipliers, returns array]
  1915. gmp_gcdext(|resource a, resource b)
  1916. [gmp_hamdist | Hamming distance, returns int]
  1917. gmp_hamdist(|resource a, resource b)
  1918. [gmp_init | Create GMP number, returns resource]
  1919. gmp_init(|mixed number)
  1920. [gmp_intval | Convert GMP number to integer, returns int]
  1921. gmp_intval(|resource gmpnumber)
  1922. [gmp_invert | Inverse by modulo, returns resource]
  1923. gmp_invert(|resource a, resource b)
  1924. [gmp_jacobi | Jacobi symbol, returns int]
  1925. gmp_jacobi(|resource a, resource p)
  1926. [gmp_legendre | Legendre symbol, returns int]
  1927. gmp_legendre(|resource a, resource p)
  1928. [gmp_mod | Modulo operation, returns resource]
  1929. gmp_mod(|resource n, resource d)
  1930. [gmp_mul | Multiply numbers, returns resource]
  1931. gmp_mul(|resource a, resource b)
  1932. [gmp_neg | Negate number, returns resource]
  1933. gmp_neg(|resource a)
  1934. [gmp_or | Logical OR, returns resource]
  1935. gmp_or(|resource a, resource b)
  1936. [gmp_perfect_square | Perfect square check, returns bool]
  1937. gmp_perfect_square(|resource a)
  1938. [gmp_popcount | Population count, returns int]
  1939. gmp_popcount(|resource a)
  1940. [gmp_pow | Raise number into power, returns resource]
  1941. gmp_pow(|resource base, int exp)
  1942. [gmp_powm | Raise number into power with modulo, returns resource]
  1943. gmp_powm(|resource base, resource exp, resource mod)
  1944. [gmp_prob_prime | Check if number is "probably prime", returns int]
  1945. gmp_prob_prime(|resource a, [int reps])
  1946. [gmp_random | Random number, returns resource]
  1947. gmp_random(|int limiter)
  1948. [gmp_scan0 | Scan for 0, returns int]
  1949. gmp_scan0(|resource a, int start)
  1950. [gmp_scan1 | Scan for 1, returns int]
  1951. gmp_scan1(|resource a, int start)
  1952. [gmp_setbit | Set bit, returns resource]
  1953. gmp_setbit(|resource &a, int index, [bool set_clear])
  1954. [gmp_sign | Sign of number, returns int]
  1955. gmp_sign(|resource a)
  1956. [gmp_sqrt | Square root, returns resource]
  1957. gmp_sqrt(|resource a)
  1958. [gmp_sqrtrm | Square root with remainder, returns array]
  1959. gmp_sqrtrm(|resource a)
  1960. [gmp_strval | Convert GMP number to string, returns string]
  1961. gmp_strval(|resource gmpnumber, [int base])
  1962. [gmp_sub | Subtract numbers, returns resource]
  1963. gmp_sub(|resource a, resource b)
  1964. [gmp_xor | Logical XOR, returns resource]
  1965. gmp_xor(|resource a, resource b)
  1966. ; -----------------------------------------------------------------------------
  1967. ; HTTP - HTTP functions
  1968. ; -----------------------------------------------------------------------------
  1969. [header | Send a raw HTTP header, returns int]
  1970. header(|string string, [bool replace], [int http_response_code])
  1971. [headers_list | Returns a list of response headers sent (or ready to send), returns array]
  1972. headers_list()|
  1973. [headers_sent | Checks if or where headers have been sent, returns bool]
  1974. headers_sent(|[string &file], [int &line])
  1975. [setcookie | Send a cookie, returns bool]
  1976. setcookie(|string name, [string value], [int expire], [string path], [string domain], [int secure])
  1977. ; -----------------------------------------------------------------------------
  1978. ; Hyperwave - Hyperwave functions
  1979. ; -----------------------------------------------------------------------------
  1980. [hw_Array2Objrec | convert attributes from object array to object record, returns string]
  1981. hw_array2objrec(|array object_array)
  1982. [hw_changeobject | Changes attributes of an object (obsolete), returns void]
  1983. hw_changeobject(|int link, int objid, array attributes)
  1984. [hw_Children | object ids of children, returns array]
  1985. hw_children(|int connection, int objectID)
  1986. [hw_ChildrenObj | object records of children, returns array]
  1987. hw_childrenobj(|int connection, int objectID)
  1988. [hw_Close | closes the Hyperwave connection, returns int]
  1989. hw_close(|int connection)
  1990. [hw_Connect | opens a connection, returns int]
  1991. hw_connect(|string host, int port, string username, string password)
  1992. [hw_connection_info | Prints information about the connection to Hyperwave server, returns void]
  1993. hw_connection_info(|int link)
  1994. [hw_cp | Copies objects, returns int]
  1995. hw_cp(|int connection, array object_id_array, int destination_id)
  1996. [hw_Deleteobject | deletes object, returns int]
  1997. hw_deleteobject(|int connection, int object_to_delete)
  1998. [hw_DocByAnchor | object id object belonging to anchor, returns int]
  1999. hw_docbyanchor(|int connection, int anchorID)
  2000. [hw_DocByAnchorObj | object record object belonging to anchor, returns string]
  2001. hw_docbyanchorobj(|int connection, int anchorID)
  2002. [hw_Document_Attributes | object record of hw_document, returns string]
  2003. hw_document_attributes(|int hw_document)
  2004. [hw_Document_BodyTag | body tag of hw_document, returns string]
  2005. hw_document_bodytag(|int hw_document)
  2006. [hw_Document_Content | returns content of hw_document, returns string]
  2007. hw_document_content(|int hw_document)
  2008. [hw_Document_SetContent | sets/replaces content of hw_document, returns string]
  2009. hw_document_setcontent(|int hw_document, string content)
  2010. [hw_Document_Size | size of hw_document, returns int]
  2011. hw_document_size(|int hw_document)
  2012. [hw_dummy | Hyperwave dummy function, returns string]
  2013. hw_dummy(|int link, int id, int msgid)
  2014. [hw_EditText | retrieve text document, returns int]
  2015. hw_edittext(|int connection, int hw_document)
  2016. [hw_Error | error number, returns int]
  2017. hw_error(|int connection)
  2018. [hw_ErrorMsg | returns error message, returns string]
  2019. hw_errormsg(|int connection)
  2020. [hw_Free_Document | frees hw_document, returns int]
  2021. hw_free_document(|int hw_document)
  2022. [hw_GetAnchors | object ids of anchors of document, returns array]
  2023. hw_getanchors(|int connection, int objectID)
  2024. [hw_GetAnchorsObj | object records of anchors of document, returns array]
  2025. hw_getanchorsobj(|int connection, int objectID)
  2026. [hw_GetAndLock | return bject record and lock object, returns string]
  2027. hw_getandlock(|int connection, int objectID)
  2028. [hw_GetChildColl | object ids of child collections, returns array]
  2029. hw_getchildcoll(|int connection, int objectID)
  2030. [hw_GetChildCollObj | object records of child collections, returns array]
  2031. hw_getchildcollobj(|int connection, int objectID)
  2032. [hw_GetChildDocColl | object ids of child documents of collection, returns array]
  2033. hw_getchilddoccoll(|int connection, int objectID)
  2034. [hw_GetChildDocCollObj | object records of child documents of collection, returns array]
  2035. hw_getchilddoccollobj(|int connection, int objectID)
  2036. [hw_GetObject | object record, returns array]
  2037. hw_getobject(|int connection, mixed objectID, string query)
  2038. [hw_GetObjectByQuery | search object, returns array]
  2039. hw_getobjectbyquery(|int connection, string query, int max_hits)
  2040. [hw_GetObjectByQueryColl | search object in collection, returns array]
  2041. hw_getobjectbyquerycoll(|int connection, int objectID, string query, int max_hits)
  2042. [hw_GetObjectByQueryCollObj | search object in collection, returns array]
  2043. hw_getobjectbyquerycollobj(|int connection, int objectID, string query, int max_hits)
  2044. [hw_GetObjectByQueryObj | search object, returns array]
  2045. hw_getobjectbyqueryobj(|int connection, string query, int max_hits)
  2046. [hw_GetParents | object ids of parents, returns array]
  2047. hw_getparents(|int connection, int objectID)
  2048. [hw_GetParentsObj | object records of parents, returns array]
  2049. hw_getparentsobj(|int connection, int objectID)
  2050. [hw_getrellink | Get link from source to dest relative to rootid, returns string]
  2051. hw_getrellink(|int link, int rootid, int sourceid, int destid)
  2052. [hw_GetRemote | Gets a remote document, returns int]
  2053. hw_getremote(|int connection, int objectID)
  2054. [hw_getremotechildren | Gets children of remote document, returns int]
  2055. hw_getremotechildren(|int connection, string object_record)
  2056. [hw_GetSrcByDestObj | Returns anchors pointing at object, returns array]
  2057. hw_getsrcbydestobj(|int connection, int objectID)
  2058. [hw_GetText | retrieve text document, returns int]
  2059. hw_gettext(|int connection, int objectID, [mixed rootID/prefix])
  2060. [hw_getusername | name of currently logged in user, returns string]
  2061. hw_getusername(|int connection)
  2062. [hw_Identify | identifies as user, returns int]
  2063. hw_identify(|string username, string password)
  2064. [hw_InCollections | check if object ids in collections, returns array]
  2065. hw_incollections(|int connection, array object_id_array, array collection_id_array, int return_collections)
  2066. [hw_Info | info about connection, returns string]
  2067. hw_info(|int connection)
  2068. [hw_InsColl | insert collection, returns int]
  2069. hw_inscoll(|int connection, int objectID, array object_array)
  2070. [hw_InsDoc | insert document, returns int]
  2071. hw_insdoc(|int connection, int parentID, string object_record, string text)
  2072. [hw_insertanchors | Inserts only anchors into text, returns string]
  2073. hw_insertanchors(|int hwdoc, array anchorecs, array dest, [array urlprefixes])
  2074. [hw_InsertDocument | upload any document, returns int]
  2075. hw_insertdocument(|int connection, int parent_id, int hw_document)
  2076. [hw_InsertObject | inserts an object record, returns int]
  2077. hw_insertobject(|int connection, string object_rec, string parameter)
  2078. [hw_mapid | Maps global id on virtual local id, returns int]
  2079. hw_mapid(|int connection, int server_id, int object_id)
  2080. [hw_Modifyobject | modifies object record, returns int]
  2081. hw_modifyobject(|int connection, int object_to_change, array remove, array add, int mode)
  2082. [hw_mv | Moves objects, returns int]
  2083. hw_mv(|int connection, array object_id_array, int source_id, int destination_id)
  2084. [hw_New_Document | create new document, returns int]
  2085. hw_new_document(|string object_record, string document_data, int document_size)
  2086. [hw_objrec2array | Convert attributes from object record to object array, returns array]
  2087. hw_objrec2array(|string object_record, [array format])
  2088. [hw_Output_Document | prints hw_document, returns int]
  2089. hw_output_document(|int hw_document)
  2090. [hw_pConnect | make a persistent database connection, returns int]
  2091. hw_pconnect(|string host, int port, string username, string password)
  2092. [hw_PipeDocument | retrieve any document, returns int]
  2093. hw_pipedocument(|int connection, int objectID)
  2094. [hw_Root | root object id, returns int]
  2095. hw_root(| )
  2096. [hw_setlinkroot | Set the id to which links are calculated, returns void]
  2097. hw_setlinkroot(|int link, int rootid)
  2098. [hw_stat | Returns status string, returns string]
  2099. hw_stat(|int link)
  2100. [hw_Unlock | unlock object, returns int]
  2101. hw_unlock(|int connection, int objectID)
  2102. [hw_Who | List of currently logged in users, returns int]
  2103. hw_who(|int connection)
  2104. ; -----------------------------------------------------------------------------
  2105. ; Hyperwave API - Hyperwave API functions
  2106. ; -----------------------------------------------------------------------------
  2107. [hw_api_attribute->key | Returns key of the attribute, returns string]
  2108. key(|void )
  2109. [hw_api_attribute->langdepvalue | Returns value for a given language, returns string]
  2110. langdepvalue(|string language)
  2111. [hw_api_attribute->value | Returns value of the attribute, returns string]
  2112. value(|void )
  2113. [hw_api_attribute->values | Returns all values of the attribute, returns array]
  2114. values(|void )
  2115. [hw_api_attribute | Creates instance of class hw_api_attribute, returns object]
  2116. attribute(|[string name], [string value])
  2117. [hw_api->checkin | Checks in an object, returns object]
  2118. checkin(|array parameter)
  2119. [hw_api->checkout | Checks out an object, returns object]
  2120. checkout(|array parameter)
  2121. [hw_api->children | Returns children of an object, returns array]
  2122. children(|array parameter)
  2123. [hw_api_content->mimetype | Returns mimetype, returns string]
  2124. mimetype(|void )
  2125. [hw_api_content->read | Read content, returns string]
  2126. read(|string buffer, integer len)
  2127. [hw_api->content | Returns content of an object, returns object]
  2128. content(|array parameter)
  2129. [hw_api->copy | Copies physically, returns object]
  2130. copy(|array parameter)
  2131. [hw_api->dbstat | Returns statistics about database server, returns object]
  2132. dbstat(|array parameter)
  2133. [hw_api->dcstat | Returns statistics about document cache server, returns object]
  2134. dcstat(|array parameter)
  2135. [hw_api->dstanchors | Returns a list of all destination anchors, returns object]
  2136. dstanchors(|array parameter)
  2137. [hw_api->dstofsrcanchors | Returns destination of a source anchor, returns object]
  2138. dstofsrcanchors(|array parameter)
  2139. [hw_api_error->count | Returns number of reasons, returns int]
  2140. count(|void )
  2141. [hw_api_error->reason | Returns reason of error, returns object]
  2142. reason(|void )
  2143. [hw_api->find | Search for objects, returns array]
  2144. find(|array parameter)
  2145. [hw_api->ftstat | Returns statistics about fulltext server, returns object]
  2146. ftstat(|array parameter)
  2147. [hwapi_hgcsp | Returns object of class hw_api, returns object]
  2148. hwapi_hgcsp(|string hostname, [int port])
  2149. [hw_api->hwstat | Returns statistics about Hyperwave server, returns object]
  2150. hwstat(|array parameter)
  2151. [hw_api->identify | Log into Hyperwave Server, returns object]
  2152. identify(|array parameter)
  2153. [hw_api->info | Returns information about server configuration, returns object]
  2154. info(|array parameter)
  2155. [hw_api->insert | Inserts a new object, returns object]
  2156. insert(|array parameter)
  2157. [hw_api->insertanchor | Inserts a new object of type anchor, returns object]
  2158. insertanchor(|array parameter)
  2159. [hw_api->insertcollection | Inserts a new object of type collection, returns object]
  2160. insertcollection(|array parameter)
  2161. [hw_api->insertdocument | Inserts a new object of type document, returns object]
  2162. insertdocument(|array parameter)
  2163. [hw_api->link | Creates a link to an object, returns object]
  2164. link(|array parameter)
  2165. [hw_api->lock | Locks an object, returns object]
  2166. lock(|array parameter)
  2167. [hw_api->move | Moves object between collections, returns object]
  2168. move(|array parameter)
  2169. [hw_api_content | Create new instance of class hw_api_content, returns string]
  2170. content(|string content, string mimetype)
  2171. [hw_api_object->assign | Clones object, returns object]
  2172. assign(|array parameter)
  2173. [hw_api_object->attreditable | Checks whether an attribute is editable, returns bool]
  2174. attreditable(|array parameter)
  2175. [hw_api_object->count | Returns number of attributes, returns int]
  2176. count(|array parameter)
  2177. [hw_api_object->insert | Inserts new attribute, returns bool]
  2178. insert(|object attribute)
  2179. [hw_api_object | Creates a new instance of class hw_api_object, returns object]
  2180. hw_api_object(|array parameter)
  2181. [hw_api_object->remove | Removes attribute, returns bool]
  2182. remove(|string name)
  2183. [hw_api_object->title | Returns the title attribute, returns string]
  2184. title(|array parameter)
  2185. [hw_api_object->value | Returns value of attribute, returns string]
  2186. value(|string name)
  2187. [hw_api->object | Retrieve attribute information, returns object]
  2188. hw_api->object(|array parameter)
  2189. [hw_api->objectbyanchor | Returns the object an anchor belongs to, returns object]
  2190. objectbyanchor(|array parameter)
  2191. [hw_api->parents | Returns parents of an object, returns array]
  2192. parents(|array parameter)
  2193. [hw_api_reason->description | Returns description of reason, returns string]
  2194. description(|void )
  2195. [hw_api_reason->type | Returns type of reason, returns object]
  2196. type(|void )
  2197. [hw_api->remove | Delete an object, returns object]
  2198. remove(|array parameter)
  2199. [hw_api->replace | Replaces an object, returns object]
  2200. replace(|array parameter)
  2201. [hw_api->setcommitedversion | Commits version other than last version, returns object]
  2202. setcommitedversion(|array parameter)
  2203. [hw_api->srcanchors | Returns a list of all source anchors, returns object]
  2204. srcanchors(|array parameter)
  2205. [hw_api->srcsofdst | Returns source of a destination object, returns object]
  2206. srcsofdst(|array parameter)
  2207. [hw_api->unlock | Unlocks a locked object, returns object]
  2208. unlock(|array parameter)
  2209. [hw_api->user | Returns the own user object, returns object]
  2210. user(|array parameter)
  2211. [hw_api->userlist | Returns a list of all logged in users, returns object]
  2212. userlist(|array parameter)
  2213. ; -----------------------------------------------------------------------------
  2214. ; iconv - iconv functions
  2215. ; -----------------------------------------------------------------------------
  2216. [iconv_get_encoding | Get current setting for character encoding conversion, returns array]
  2217. iconv_get_encoding(|[string type])
  2218. [iconv_mime_decode | Decodes a mime header field, returns string]
  2219. iconv_mime_decode(|string encoded_string, [string charset])
  2220. [iconv_mime_encode | Composes a mime header field with field_name and field_value in a specified scheme, returns string]
  2221. iconv_mime_encode(|string field_name, string field_value, [array preference])
  2222. [iconv_set_encoding | Set current setting for character encoding conversion, returns bool]
  2223. iconv_set_encoding(|string type, string charset)
  2224. [iconv_strlen | Returns the character count of string, returns int]
  2225. iconv_strlen(|string str, [string charset])
  2226. [iconv_strpos | Finds position of first occurrence of a needle within a haystack., returns int]
  2227. iconv_strpos(|string haystack, string needle, int offset, [string charset])
  2228. [iconv_strrpos | Finds position of last occurrence of needle within part of haystack beginning with offset, returns string]
  2229. iconv_strrpos(|string haystack, string needle, [string charset])
  2230. [iconv_substr | Returns specified part of a string, returns string]
  2231. iconv_substr(|string str, int offset, [int length], [string charset])
  2232. [iconv | Convert string to requested character encoding, returns string]
  2233. iconv(|string in_charset, string out_charset, string str)
  2234. [ob_iconv_handler | Convert character encoding as output buffer handler, returns array]
  2235. ob_iconv_handler(|string contents, int status)
  2236. ; -----------------------------------------------------------------------------
  2237. ; Image - Image functions
  2238. ; -----------------------------------------------------------------------------
  2239. [exif_imagetype | Determine the type of an image, returns int]
  2240. exif_imagetype(|string filename)
  2241. [exif_read_data | Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras., returns array]
  2242. exif_read_data(|string filename, [string sections], [bool arrays], [bool thumbnail])
  2243. [exif_thumbnail | Retrieve the embedded thumbnail of a TIFF or JPEG image, returns string]
  2244. exif_thumbnail(|string filename, [int &width], [int &height], [int &imagetype])
  2245. [gd_info | Retrieve information about the currently installed GD library, returns array]
  2246. gd_info()|
  2247. [getimagesize | Get the size of an image, returns array]
  2248. getimagesize(|string filename, [array imageinfo])
  2249. [image_type_to_mime_type | Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype, returns string]
  2250. image_type_to_mime_type(|int imagetype)
  2251. [image2wbmp | Output image to browser or file, returns int]
  2252. image2wbmp(|resource image, [string filename], [int threshold])
  2253. [imagealphablending | Set the blending mode for an image, returns bool]
  2254. imagealphablending(|resource image, bool blendmode)
  2255. [imageantialias | Should antialias functions be used or not, returns bool]
  2256. imageantialias(|resource im, bool on)
  2257. [imagearc | Draw a partial ellipse, returns int]
  2258. imagearc(|resource image, int cx, int cy, int w, int h, int s, int e, int color)
  2259. [imagechar | Draw a character horizontally, returns int]
  2260. imagechar(|resource image, int font, int x, int y, string c, int color)
  2261. [imagecharup | Draw a character vertically, returns int]
  2262. imagecharup(|resource image, int font, int x, int y, string c, int color)
  2263. [imagecolorallocate | Allocate a color for an image, returns int]
  2264. imagecolorallocate(|resource image, int red, int green, int blue)
  2265. [imagecolorallocatealpha | Allocate a color for an image, returns int]
  2266. imagecolorallocatealpha(|resource image, int red, int green, int blue, int alpha)
  2267. [imagecolorat | Get the index of the color of a pixel, returns int]
  2268. imagecolorat(|resource image, int x, int y)
  2269. [imagecolorclosest | Get the index of the closest color to the specified color, returns int]
  2270. imagecolorclosest(|resource image, int red, int green, int blue)
  2271. [imagecolorclosestalpha | Get the index of the closest color to the specified color + alpha, returns int]
  2272. imagecolorclosestalpha(|resource image, int red, int green, int blue, int alpha)
  2273. [imagecolorclosesthwb | Get the index of the color which has the hue, white and blackness nearest to the given color, returns int]
  2274. imagecolorclosesthwb(|resource image, int red, int green, int blue)
  2275. [imagecolordeallocate | De-allocate a color for an image, returns int]
  2276. imagecolordeallocate(|resource image, int color)
  2277. [imagecolorexact | Get the index of the specified color, returns int]
  2278. imagecolorexact(|resource image, int red, int green, int blue)
  2279. [imagecolorexactalpha | Get the index of the specified color + alpha, returns int]
  2280. imagecolorexactalpha(|resource image, int red, int green, int blue, int alpha)
  2281. [imagecolormatch | Makes the colors of the palette version of an image more closely match the true color version, returns bool]
  2282. imagecolormatch(|resource image1, resource image2)
  2283. [imagecolorresolve | Get the index of the specified color or its closest possible alternative, returns int]
  2284. imagecolorresolve(|resource image, int red, int green, int blue)
  2285. [imagecolorresolvealpha | Get the index of the specified color + alpha or its closest possible alternative, returns int]
  2286. imagecolorresolvealpha(|resource image, int red, int green, int blue, int alpha)
  2287. [imagecolorset | Set the color for the specified palette index, returns bool]
  2288. imagecolorset(|resource image, int index, int red, int green, int blue)
  2289. [imagecolorsforindex | Get the colors for an index, returns array]
  2290. imagecolorsforindex(|resource image, int index)
  2291. [imagecolorstotal | Find out the number of colors in an image's palette, returns int]
  2292. imagecolorstotal(|resource image)
  2293. [imagecolortransparent | Define a color as transparent, returns int]
  2294. imagecolortransparent(|resource image, [int color])
  2295. [imagecopy | Copy part of an image, returns int]
  2296. imagecopy(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)
  2297. [imagecopymerge | Copy and merge part of an image, returns int]
  2298. imagecopymerge(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
  2299. [imagecopymergegray | Copy and merge part of an image with gray scale, returns int]
  2300. imagecopymergegray(|resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)
  2301. [imagecopyresampled | Copy and resize part of an image with resampling, returns bool]
  2302. imagecopyresampled(|resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  2303. [imagecopyresized | Copy and resize part of an image, returns int]
  2304. imagecopyresized(|resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)
  2305. [imagecreate | Create a new palette based image, returns resource]
  2306. imagecreate(|int x_size, int y_size)
  2307. [imagecreatefromgd2 | Create a new image from GD2 file or URL, returns resource]
  2308. imagecreatefromgd2(|string filename)
  2309. [imagecreatefromgd2part | Create a new image from a given part of GD2 file or URL, returns resource]
  2310. imagecreatefromgd2part(|string filename, int srcX, int srcY, int width, int height)
  2311. [imagecreatefromgd | Create a new image from GD file or URL, returns resource]
  2312. imagecreatefromgd(|string filename)
  2313. [imagecreatefromgif | Create a new image from file or URL, returns resource]
  2314. imagecreatefromgif(|string filename)
  2315. [imagecreatefromjpeg | Create a new image from file or URL, returns resource]
  2316. imagecreatefromjpeg(|string filename)
  2317. [imagecreatefrompng | Create a new image from file or URL, returns resource]
  2318. imagecreatefrompng(|string filename)
  2319. [imagecreatefromstring | Create a new image from the image stream in the string, returns resource]
  2320. imagecreatefromstring(|string image)
  2321. [imagecreatefromwbmp | Create a new image from file or URL, returns resource]
  2322. imagecreatefromwbmp(|string filename)
  2323. [imagecreatefromxbm | Create a new image from file or URL, returns resource]
  2324. imagecreatefromxbm(|string filename)
  2325. [imagecreatefromxpm | Create a new image from file or URL, returns resource]
  2326. imagecreatefromxpm(|string filename)
  2327. [imagecreatetruecolor | Create a new true color image, returns resource]
  2328. imagecreatetruecolor(|int x_size, int y_size)
  2329. [imagedashedline | Draw a dashed line, returns int]
  2330. imagedashedline(|resource image, int x1, int y1, int x2, int y2, int color)
  2331. [imagedestroy | Destroy an image, returns int]
  2332. imagedestroy(|resource image)
  2333. [imageellipse | Draw an ellipse, returns int]
  2334. imageellipse(|resource image, int cx, int cy, int w, int h, int color)
  2335. [imagefill | Flood fill, returns int]
  2336. imagefill(|resource image, int x, int y, int color)
  2337. [imagefilledarc | Draw a partial ellipse and fill it, returns bool]
  2338. imagefilledarc(|resource image, int cx, int cy, int w, int h, int s, int e, int color, int style)
  2339. [imagefilledellipse | Draw a filled ellipse, returns bool]
  2340. imagefilledellipse(|resource image, int cx, int cy, int w, int h, int color)
  2341. [imagefilledpolygon | Draw a filled polygon, returns int]
  2342. imagefilledpolygon(|resource image, array points, int num_points, int color)
  2343. [imagefilledrectangle | Draw a filled rectangle, returns int]
  2344. imagefilledrectangle(|resource image, int x1, int y1, int x2, int y2, int color)
  2345. [imagefilltoborder | Flood fill to specific color, returns int]
  2346. imagefilltoborder(|resource image, int x, int y, int border, int color)
  2347. [imagefontheight | Get font height, returns int]
  2348. imagefontheight(|int font)
  2349. [imagefontwidth | Get font width, returns int]
  2350. imagefontwidth(|int font)
  2351. [imageftbbox | Give the bounding box of a text using fonts via freetype2, returns array]
  2352. imageftbbox(|int size, int angle, string font_file, string text, [array extrainfo])
  2353. [imagefttext | Write text to the image using fonts using FreeType 2, returns array]
  2354. imagefttext(|resource image, int size, int angle, int x, int y, int col, string font_file, string text, [array extrainfo])
  2355. [imagegammacorrect | Apply a gamma correction to a GD image, returns int]
  2356. imagegammacorrect(|resource image, float inputgamma, float outputgamma)
  2357. [imagegd2 | Output GD2 image, returns int]
  2358. imagegd2(|resource image, [string filename], [int chunk_size], [int type])
  2359. [imagegd | Output GD image to browser or file, returns int]
  2360. imagegd(|resource image, [string filename])
  2361. [imagegif | Output image to browser or file, returns int]
  2362. imagegif(|resource image, [string filename])
  2363. [imageinterlace | Enable or disable interlace, returns int]
  2364. imageinterlace(|resource image, [int interlace])
  2365. [imageistruecolor | Finds whether an image is a truecolor image., returns bool]
  2366. imageistruecolor(|resource image)
  2367. [imagejpeg | Output image to browser or file, returns int]
  2368. imagejpeg(|resource image, [string filename], [int quality])
  2369. [imageline | Draw a line, returns int]
  2370. imageline(|resource image, int x1, int y1, int x2, int y2, int color)
  2371. [imageloadfont | Load a new font, returns int]
  2372. imageloadfont(|string file)
  2373. [imagepalettecopy | Copy the palette from one image to another, returns int]
  2374. imagepalettecopy(|resource destination, resource source)
  2375. [imagepng | Output a PNG image to either the browser or a file, returns int]
  2376. imagepng(|resource image, [string filename])
  2377. [imagepolygon | Draw a polygon, returns int]
  2378. imagepolygon(|resource image, array points, int num_points, int color)
  2379. [imagepsbbox | Give the bounding box of a text rectangle using PostScript Type1 fonts, returns array]
  2380. imagepsbbox(|string text, int font, int size, [int space], [int tightness], [float angle])
  2381. [imagepscopyfont | Make a copy of an already loaded font for further modification, returns int]
  2382. imagepscopyfont(|int fontindex)
  2383. [imagepsencodefont | Change the character encoding vector of a font, returns int]
  2384. imagepsencodefont(|int font_index, string encodingfile)
  2385. [imagepsextendfont | Extend or condense a font, returns bool]
  2386. imagepsextendfont(|int font_index, float extend)
  2387. [imagepsfreefont | Free memory used by a PostScript Type 1 font, returns void]
  2388. imagepsfreefont(|int fontindex)
  2389. [imagepsloadfont | Load a PostScript Type 1 font from file, returns int]
  2390. imagepsloadfont(|string filename)
  2391. [imagepsslantfont | Slant a font, returns bool]
  2392. imagepsslantfont(|int font_index, float slant)
  2393. [imagepstext | To draw a text string over an image using PostScript Type1 fonts, returns array]
  2394. imagepstext(|resource image, string text, int font, int size, int foreground, int background, int x, int y, [int space], [int tightness], [float angle], [int antialias_steps])
  2395. [imagerectangle | Draw a rectangle, returns int]
  2396. imagerectangle(|resource image, int x1, int y1, int x2, int y2, int col)
  2397. [imagerotate | Rotate an image with a given angle, returns resource]
  2398. imagerotate(|resource src_im, float angle, int bgd_color)
  2399. [imagesavealpha | Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images., returns bool]
  2400. imagesavealpha(|resource image, bool saveflag)
  2401. [imagesetbrush | Set the brush image for line drawing, returns int]
  2402. imagesetbrush(|resource image, resource brush)
  2403. [imagesetpixel | Set a single pixel, returns int]
  2404. imagesetpixel(|resource image, int x, int y, int color)
  2405. [imagesetstyle | Set the style for line drawing, returns bool]
  2406. imagesetstyle(|resource image, array style)
  2407. [imagesetthickness | Set the thickness for line drawing, returns bool]
  2408. imagesetthickness(|resource image, int thickness)
  2409. [imagesettile | Set the tile image for filling, returns int]
  2410. imagesettile(|resource image, resource tile)
  2411. [imagestring | Draw a string horizontally, returns int]
  2412. imagestring(|resource image, int font, int x, int y, string s, int col)
  2413. [imagestringup | Draw a string vertically, returns int]
  2414. imagestringup(|resource image, int font, int x, int y, string s, int col)
  2415. [imagesx | Get image width, returns int]
  2416. imagesx(|resource image)
  2417. [imagesy | Get image height, returns int]
  2418. imagesy(|resource image)
  2419. [imagetruecolortopalette | Convert a true color image to a palette image, returns void]
  2420. imagetruecolortopalette(|resource image, bool dither, int ncolors)
  2421. [imagettfbbox | Give the bounding box of a text using TrueType fonts, returns array]
  2422. imagettfbbox(|int size, int angle, string fontfile, string text)
  2423. [imagettftext | Write text to the image using TrueType fonts, returns array]
  2424. imagettftext(|resource image, int size, int angle, int x, int y, int color, string fontfile, string text)
  2425. [imagetypes | Return the image types supported by this PHP build, returns int]
  2426. imagetypes()|
  2427. [imagewbmp | Output image to browser or file, returns int]
  2428. imagewbmp(|resource image, [string filename], [int foreground])
  2429. [iptcembed | Embed binary IPTC data into a JPEG image, returns array]
  2430. iptcembed(|string iptcdata, string jpeg_file_name, [int spool])
  2431. [iptcparse | Parse a binary IPTC http://www.iptc.org/ block into single tags., returns array]
  2432. iptcparse(|string iptcblock)
  2433. [jpeg2wbmp | Convert JPEG image file to WBMP image file, returns int]
  2434. jpeg2wbmp(|string jpegname, string wbmpname, int d_height, int d_width, int threshold)
  2435. [png2wbmp | Convert PNG image file to WBMP image file, returns int]
  2436. png2wbmp(|string pngname, string wbmpname, int d_height, int d_width, int threshold)
  2437. [read_exif_data | Alias of exif_read_data]
  2438. read_exif_data(|)
  2439. ; -----------------------------------------------------------------------------
  2440. ; IMAP - IMAP, POP3 and NNTP functions
  2441. ; -----------------------------------------------------------------------------
  2442. [imap_8bit | Convert an 8bit string to a quoted-printable string, returns string]
  2443. imap_8bit(|string string)
  2444. [imap_alerts | This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset, returns array]
  2445. imap_alerts()|
  2446. [imap_append | Append a string message to a specified mailbox, returns bool]
  2447. imap_append(|resource imap_stream, string mbox, string message, [string options])
  2448. [imap_base64 | Decode BASE64 encoded text, returns string]
  2449. imap_base64(|string text)
  2450. [imap_binary | Convert an 8bit string to a base64 string, returns string]
  2451. imap_binary(|string string)
  2452. [imap_body | Read the message body, returns string]
  2453. imap_body(|resource imap_stream, int msg_number, [int options])
  2454. [imap_bodystruct | Read the structure of a specified body section of a specific message, returns object]
  2455. imap_bodystruct(|resource stream_id, int msg_no, int section)
  2456. [imap_check | Check current mailbox, returns object]
  2457. imap_check(|resource imap_stream)
  2458. [imap_clearflag_full | Clears flags on messages, returns bool]
  2459. imap_clearflag_full(|resource stream, string sequence, string flag, string options)
  2460. [imap_close | Close an IMAP stream, returns bool]
  2461. imap_close(|resource imap_stream, [int flag])
  2462. [imap_createmailbox | Create a new mailbox, returns bool]
  2463. imap_createmailbox(|resource imap_stream, string mbox)
  2464. [imap_delete | Mark a message for deletion from current mailbox, returns bool]
  2465. imap_delete(|int imap_stream, int msg_number, [int options])
  2466. [imap_deletemailbox | Delete a mailbox, returns bool]
  2467. imap_deletemailbox(|resource imap_stream, string mbox)
  2468. [imap_errors | This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset., returns array]
  2469. imap_errors()|
  2470. [imap_expunge | Delete all messages marked for deletion, returns bool]
  2471. imap_expunge(|resource imap_stream)
  2472. [imap_fetch_overview | Read an overview of the information in the headers of the given message, returns array]
  2473. imap_fetch_overview(|resource imap_stream, string sequence, [int options])
  2474. [imap_fetchbody | Fetch a particular section of the body of the message, returns string]
  2475. imap_fetchbody(|resource imap_stream, int msg_number, string part_number, [flags options])
  2476. [imap_fetchheader | Returns header for a message, returns string]
  2477. imap_fetchheader(|resource imap_stream, int msgno, int options)
  2478. [imap_fetchstructure | Read the structure of a particular message, returns object]
  2479. imap_fetchstructure(|resource imap_stream, int msg_number, [int options])
  2480. [imap_get_quota | Retrieve the quota level settings, and usage statics per mailbox, returns array]
  2481. imap_get_quota(|resource imap_stream, string quota_root)
  2482. [imap_get_quotaroot | Retrieve the quota settings per user, returns array]
  2483. imap_get_quotaroot(|resource imap_stream, string quota_root)
  2484. [imap_getacl | Gets the ACL for a given mailbox, returns array]
  2485. imap_getacl(|resource stream_id, string mailbox)
  2486. [imap_getmailboxes | Read the list of mailboxes, returning detailed information on each one, returns array]
  2487. imap_getmailboxes(|resource imap_stream, string ref, string pattern)
  2488. [imap_getsubscribed | List all the subscribed mailboxes, returns array]
  2489. imap_getsubscribed(|resource imap_stream, string ref, string pattern)
  2490. [imap_header | Alias of imap_headerinfo]
  2491. imap_header(|)
  2492. [imap_headerinfo | Read the header of the message, returns object]
  2493. imap_headerinfo(|resource imap_stream, int msg_number, [int fromlength], [int subjectlength], [string defaulthost])
  2494. [imap_headers | Returns headers for all messages in a mailbox, returns array]
  2495. imap_headers(|resource imap_stream)
  2496. [imap_last_error | This function returns the last IMAP error (if any) that occurred during this page request, returns string]
  2497. imap_last_error()|
  2498. [imap_list | Read the list of mailboxes, returns array]
  2499. imap_list(|resource imap_stream, string ref, string pattern)
  2500. [imap_listmailbox | Alias of imap_list]
  2501. imap_listmailbox(|)
  2502. [imap_listscan | Read the list of mailboxes, takes a string to search for in the text of the mailbox, returns array]
  2503. imap_listscan(|resource imap_stream, string ref, string pattern, string content)
  2504. [imap_listsubscribed | Alias of imap_lsub]
  2505. imap_listsubscribed(|)
  2506. [imap_lsub | List all the subscribed mailboxes, returns array]
  2507. imap_lsub(|resource imap_stream, string ref, string pattern)
  2508. [imap_mail_compose | Create a MIME message based on given envelope and body sections, returns string]
  2509. imap_mail_compose(|array envelope, array body)
  2510. [imap_mail_copy | Copy specified messages to a mailbox, returns bool]
  2511. imap_mail_copy(|resource imap_stream, string msglist, string mbox, [int options])
  2512. [imap_mail_move | Move specified messages to a mailbox, returns bool]
  2513. imap_mail_move(|resource imap_stream, string msglist, string mbox, [int options])
  2514. [imap_mail | Send an email message, returns bool]
  2515. imap_mail(|string to, string subject, string message, [string additional_headers], [string cc], [string bcc], [string rpath])
  2516. [imap_mailboxmsginfo | Get information about the current mailbox, returns object]
  2517. imap_mailboxmsginfo(|resource imap_stream)
  2518. [imap_mime_header_decode | Decode MIME header elements, returns array]
  2519. imap_mime_header_decode(|string text)
  2520. [imap_msgno | This function returns the message sequence number for the given UID, returns int]
  2521. imap_msgno(|resource imap_stream, int uid)
  2522. [imap_num_msg | Gives the number of messages in the current mailbox, returns int]
  2523. imap_num_msg(|resource imap_stream)
  2524. [imap_num_recent | Gives the number of recent messages in current mailbox, returns int]
  2525. imap_num_recent(|resource imap_stream)
  2526. [imap_open | Open an IMAP stream to a mailbox, returns resource]
  2527. imap_open(|string mailbox, string username, string password, [int options])
  2528. [imap_ping | Check if the IMAP stream is still active, returns bool]
  2529. imap_ping(|resource imap_stream)
  2530. [imap_qprint | Convert a quoted-printable string to an 8 bit string, returns string]
  2531. imap_qprint(|string string)
  2532. [imap_renamemailbox | Rename an old mailbox to new mailbox, returns bool]
  2533. imap_renamemailbox(|resource imap_stream, string old_mbox, string new_mbox)
  2534. [imap_reopen | Reopen IMAP stream to new mailbox, returns bool]
  2535. imap_reopen(|resource imap_stream, string mailbox, [string options])
  2536. [imap_rfc822_parse_adrlist | Parses an address string, returns array]
  2537. imap_rfc822_parse_adrlist(|string address, string default_host)
  2538. [imap_rfc822_parse_headers | Parse mail headers from a string, returns object]
  2539. imap_rfc822_parse_headers(|string headers, [string defaulthost])
  2540. [imap_rfc822_write_address | Returns a properly formatted email address given the mailbox, host, and personal info., returns string]
  2541. imap_rfc822_write_address(|string mailbox, string host, string personal)
  2542. [imap_scanmailbox | Alias of imap_listscan]
  2543. imap_scanmailbox(|)
  2544. [imap_search | This function returns an array of messages matching the given search criteria, returns array]
  2545. imap_search(|resource imap_stream, string criteria, int options)
  2546. [imap_set_quota | Sets a quota for a given mailbox, returns bool]
  2547. imap_set_quota(|resource imap_stream, string quota_root, int quota_limit)
  2548. [imap_setacl | Sets the ACL for a giving mailbox, returns bool]
  2549. imap_setacl(|resource stream_id, string mailbox, string id, string rights)
  2550. [imap_setflag_full | Sets flags on messages, returns bool]
  2551. imap_setflag_full(|resource stream, string sequence, string flag, string options)
  2552. [imap_sort | Sort an array of message headers, returns array]
  2553. imap_sort(|resource stream, int criteria, int reverse, [int options], [string search_criteria])
  2554. [imap_status | This function returns status information on a mailbox other than the current one, returns object]
  2555. imap_status(|resource imap_stream, string mailbox, int options)
  2556. [imap_subscribe | Subscribe to a mailbox, returns bool]
  2557. imap_subscribe(|resource imap_stream, string mbox)
  2558. [imap_thread | Return threaded by REFERENCES tree, returns array]
  2559. imap_thread(|resource stream_id, [int options])
  2560. [imap_timeout | Set or fetch imap timeout, returns mixed]
  2561. imap_timeout(|int timeout_type, [int timeout])
  2562. [imap_uid | This function returns the UID for the given message sequence number, returns int]
  2563. imap_uid(|resource imap_stream, int msgno)
  2564. [imap_undelete | Unmark the message which is marked deleted, returns bool]
  2565. imap_undelete(|resource imap_stream, int msg_number)
  2566. [imap_unsubscribe | Unsubscribe from a mailbox, returns bool]
  2567. imap_unsubscribe(|string imap_stream, string mbox)
  2568. [imap_utf7_decode | Decodes a modified UTF-7 encoded string., returns string]
  2569. imap_utf7_decode(|string text)
  2570. [imap_utf7_encode | Converts ISO-8859-1 string to modified UTF-7 text., returns string]
  2571. imap_utf7_encode(|string data)
  2572. [imap_utf8 | Converts MIME-encoded text to UTF-8, returns string]
  2573. imap_utf8(|string mime_encoded_text)
  2574. ; -----------------------------------------------------------------------------
  2575. ; Informix - Informix functions
  2576. ; -----------------------------------------------------------------------------
  2577. [ifx_affected_rows | Get number of rows affected by a query, returns int]
  2578. ifx_affected_rows(|int result_id)
  2579. [ifx_blobinfile_mode | Set the default blob mode for all select queries, returns void]
  2580. ifx_blobinfile_mode(|int mode)
  2581. [ifx_byteasvarchar | Set the default byte mode, returns void]
  2582. ifx_byteasvarchar(|int mode)
  2583. [ifx_close | Close Informix connection, returns int]
  2584. ifx_close(|[int link_identifier])
  2585. [ifx_connect | Open Informix server connection, returns int]
  2586. ifx_connect(|[string database], [string userid], [string password])
  2587. [ifx_copy_blob | Duplicates the given blob object, returns int]
  2588. ifx_copy_blob(|int bid)
  2589. [ifx_create_blob | Creates an blob object, returns int]
  2590. ifx_create_blob(|int type, int mode, string param)
  2591. [ifx_create_char | Creates an char object, returns int]
  2592. ifx_create_char(|string param)
  2593. [ifx_do | Execute a previously prepared SQL-statement, returns int]
  2594. ifx_do(|int result_id)
  2595. [ifx_error | Returns error code of last Informix call, returns string]
  2596. ifx_error()|
  2597. [ifx_errormsg | Returns error message of last Informix call, returns string]
  2598. ifx_errormsg(|[int errorcode])
  2599. [ifx_fetch_row | Get row as enumerated array, returns array]
  2600. ifx_fetch_row(|int result_id, [mixed position])
  2601. [ifx_fieldproperties | List of SQL fieldproperties, returns array]
  2602. ifx_fieldproperties(|int result_id)
  2603. [ifx_fieldtypes | List of Informix SQL fields, returns array]
  2604. ifx_fieldtypes(|int result_id)
  2605. [ifx_free_blob | Deletes the blob object, returns int]
  2606. ifx_free_blob(|int bid)
  2607. [ifx_free_char | Deletes the char object, returns int]
  2608. ifx_free_char(|int bid)
  2609. [ifx_free_result | Releases resources for the query, returns int]
  2610. ifx_free_result(|int result_id)
  2611. [ifx_get_blob | Return the content of a blob object, returns int]
  2612. ifx_get_blob(|int bid)
  2613. [ifx_get_char | Return the content of the char object, returns int]
  2614. ifx_get_char(|int bid)
  2615. [ifx_getsqlca | Get the contents of sqlca.sqlerrd[0..5] after a query, returns array]
  2616. ifx_getsqlca(|int result_id)
  2617. [ifx_htmltbl_result | Formats all rows of a query into a HTML table, returns int]
  2618. ifx_htmltbl_result(|int result_id, [string html_table_options])
  2619. [ifx_nullformat | Sets the default return value on a fetch row, returns void]
  2620. ifx_nullformat(|int mode)
  2621. [ifx_num_fields | Returns the number of columns in the query, returns int]
  2622. ifx_num_fields(|int result_id)
  2623. [ifx_num_rows | Count the rows already fetched from a query, returns int]
  2624. ifx_num_rows(|int result_id)
  2625. [ifx_pconnect | Open persistent Informix connection, returns int]
  2626. ifx_pconnect(|[string database], [string userid], [string password])
  2627. [ifx_prepare | Prepare an SQL-statement for execution, returns int]
  2628. ifx_prepare(|string query, int conn_id, [int cursor_def], mixed blobidarray)
  2629. [ifx_query | Send Informix query, returns int]
  2630. ifx_query(|string query, int link_identifier, [int cursor_type], [mixed blobidarray])
  2631. [ifx_textasvarchar | Set the default text mode, returns void]
  2632. ifx_textasvarchar(|int mode)
  2633. [ifx_update_blob | Updates the content of the blob object, returns bool]
  2634. ifx_update_blob(|int bid, string content)
  2635. [ifx_update_char | Updates the content of the char object, returns int]
  2636. ifx_update_char(|int bid, string content)
  2637. [ifxus_close_slob | Deletes the slob object, returns int]
  2638. ifxus_close_slob(|int bid)
  2639. [ifxus_create_slob | Creates an slob object and opens it, returns int]
  2640. ifxus_create_slob(|int mode)
  2641. [ifxus_free_slob | Deletes the slob object, returns int]
  2642. ifxus_free_slob(|int bid)
  2643. [ifxus_open_slob | Opens an slob object, returns int]
  2644. ifxus_open_slob(|long bid, int mode)
  2645. [ifxus_read_slob | Reads nbytes of the slob object, returns int]
  2646. ifxus_read_slob(|long bid, long nbytes)
  2647. [ifxus_seek_slob | Sets the current file or seek position, returns int]
  2648. ifxus_seek_slob(|long bid, int mode, long offset)
  2649. [ifxus_tell_slob | Returns the current file or seek position, returns int]
  2650. ifxus_tell_slob(|long bid)
  2651. [ifxus_write_slob | Writes a string into the slob object, returns int]
  2652. ifxus_write_slob(|long bid, string content)
  2653. ; -----------------------------------------------------------------------------
  2654. ; InterBase - InterBase functions
  2655. ; -----------------------------------------------------------------------------
  2656. [ibase_add_user | Add a user to a security database (only for IB6 or later), returns bool]
  2657. ibase_add_user(|string server, string dba_user_name, string dba_user_password, string user_name, string password, [string first_name], [string middle_name], [string last_name])
  2658. [ibase_affected_rows | Return the number of rows that were affected by the previous query, returns int]
  2659. ibase_affected_rows(|resource link_identifier)
  2660. [ibase_blob_add | Add data into a newly created blob, returns bool]
  2661. ibase_blob_add(|resource blob_handle, string data)
  2662. [ibase_blob_cancel | Cancel creating blob, returns bool]
  2663. ibase_blob_cancel(|resource blob_handle)
  2664. [ibase_blob_close | Close blob, returns mixed]
  2665. ibase_blob_close(|resource blob_handle)
  2666. [ibase_blob_create | Create a new blob for adding data, returns resource]
  2667. ibase_blob_create(|[resource link_identifier])
  2668. [ibase_blob_echo | Output blob contents to browser, returns bool]
  2669. ibase_blob_echo(|string blob_id)
  2670. [ibase_blob_get | Get len bytes data from open blob, returns string]
  2671. ibase_blob_get(|resource blob_handle, int len)
  2672. [ibase_blob_import | Create blob, copy file in it, and close it, returns string]
  2673. ibase_blob_import(|[resource link_identifier], resource file_handle)
  2674. [ibase_blob_info | Return blob length and other useful info, returns array]
  2675. ibase_blob_info(|string blob_id)
  2676. [ibase_blob_open | Open blob for retrieving data parts, returns resource]
  2677. ibase_blob_open(|string blob_id)
  2678. [ibase_close | Close a connection to an InterBase database, returns bool]
  2679. ibase_close(|[resource connection_id])
  2680. [ibase_commit_ret | Commit a transaction without closing it, returns bool]
  2681. ibase_commit_ret(|[resource link_identifier])
  2682. [ibase_commit | Commit a transaction, returns bool]
  2683. ibase_commit(|[resource link_identifier])
  2684. [ibase_connect | Open a connection to an InterBase database, returns resource]
  2685. ibase_connect(|string database, [string username], [string password], [string charset], [int buffers], [int dialect], [string role])
  2686. [ibase_delete_user | Delete a user from a security database (only for IB6 or later), returns bool]
  2687. ibase_delete_user(|string server, string dba_user_name, string dba_user_password, string user_name)
  2688. [ibase_drop_db | Drops a database, returns bool]
  2689. ibase_drop_db(|resource connection)
  2690. [ibase_errcode | Return an error code, returns int]
  2691. ibase_errcode()|
  2692. [ibase_errmsg | Return error messages, returns string]
  2693. ibase_errmsg()|
  2694. [ibase_execute | Execute a previously prepared query, returns resource]
  2695. ibase_execute(|resource query, [int bind_args])
  2696. [ibase_fetch_assoc | Fetch a result row from a query as an associative array, returns array]
  2697. ibase_fetch_assoc(|resource result, [int fetch_flag])
  2698. [ibase_fetch_object | Get an object from a InterBase database, returns object]
  2699. ibase_fetch_object(|resource result_id, [int fetch_flag])
  2700. [ibase_fetch_row | Fetch a row from an InterBase database, returns array]
  2701. ibase_fetch_row(|resource result_identifier, [int fetch_flag])
  2702. [ibase_field_info | Get information about a field, returns array]
  2703. ibase_field_info(|resource result, int field_number)
  2704. [ibase_free_event_handler | Cancels a registered event handler, returns bool]
  2705. ibase_free_event_handler(|resource event)
  2706. [ibase_free_query | Free memory allocated by a prepared query, returns bool]
  2707. ibase_free_query(|resource query)
  2708. [ibase_free_result | Free a result set, returns bool]
  2709. ibase_free_result(|resource result_identifier)
  2710. [ibase_gen_id | Increments the named generator and returns its new value, returns int]
  2711. ibase_gen_id(|[resource link_identifier], [string generator], [int increment])
  2712. [ibase_modify_user | Modify a user to a security database (only for IB6 or later), returns bool]
  2713. ibase_modify_user(|string server, string dba_user_name, string dba_user_password, string user_name, string password, [string first_name], [string middle_name], [string last_name])
  2714. [ibase_name_result | Assigns a name to a result set, returns bool]
  2715. ibase_name_result(|resource result, string name)
  2716. [ibase_num_fields | Get the number of fields in a result set, returns int]
  2717. ibase_num_fields(|resource result_id)
  2718. [ibase_num_params | Return the number of parameters in a prepared query, returns int]
  2719. ibase_num_params(|resource query)
  2720. [ibase_param_info | Return information about a parameter in a prepared query, returns array]
  2721. ibase_param_info(|resource query, int param_number)
  2722. [ibase_pconnect | Open a persistent connection to an InterBase database, returns resource]
  2723. ibase_pconnect(|string database, [string username], [string password], [string charset], [int buffers], [int dialect], [string role])
  2724. [ibase_prepare | Prepare a query for later binding of parameter placeholders and execution, returns resource]
  2725. ibase_prepare(|[resource link_identifier], string query)
  2726. [ibase_query | Execute a query on an InterBase database, returns resource]
  2727. ibase_query(|[resource link_identifier], string query, [int bind_args])
  2728. [ibase_rollback_ret | Roll back a transaction without closing it, returns bool]
  2729. ibase_rollback_ret(|[resource link_identifier])
  2730. [ibase_rollback | Roll back a transaction, returns bool]
  2731. ibase_rollback(|[resource link_identifier])
  2732. [ibase_set_event_handler | Register a callback function to be called when events are posted, returns resource]
  2733. ibase_set_event_handler(|[resource connection], callback event_handler, string event_name1, [string event_name2], [string ...])
  2734. [ibase_timefmt | Sets the format of timestamp, date and time type columns returned from queries, returns int]
  2735. ibase_timefmt(|string format, [int columntype])
  2736. [ibase_trans | Begin a transaction, returns resource]
  2737. ibase_trans(|[int trans_args], [resource link_identifier])
  2738. [ibase_wait_event | Wait for an event to be posted by the database, returns string]
  2739. ibase_wait_event(|[resource connection], string event_name1, [string event_name2], [string ...])
  2740. ; -----------------------------------------------------------------------------
  2741. ; Ingres II - Ingres II functions
  2742. ; -----------------------------------------------------------------------------
  2743. [ingres_autocommit | Switch autocommit on or off, returns bool]
  2744. ingres_autocommit(|[resource link])
  2745. [ingres_close | Close an Ingres II database connection, returns bool]
  2746. ingres_close(|[resource link])
  2747. [ingres_commit | Commit a transaction, returns bool]
  2748. ingres_commit(|[resource link])
  2749. [ingres_connect | Open a connection to an Ingres II database, returns resource]
  2750. ingres_connect(|[string database], [string username], [string password])
  2751. [ingres_fetch_array | Fetch a row of result into an array, returns array]
  2752. ingres_fetch_array(|[int result_type], [resource link])
  2753. [ingres_fetch_object | Fetch a row of result into an object., returns object]
  2754. ingres_fetch_object(|[int result_type], [resource link])
  2755. [ingres_fetch_row | Fetch a row of result into an enumerated array, returns array]
  2756. ingres_fetch_row(|[resource link])
  2757. [ingres_field_length | Get the length of a field, returns int]
  2758. ingres_field_length(|int index, [resource link])
  2759. [ingres_field_name | Get the name of a field in a query result., returns string]
  2760. ingres_field_name(|int index, [resource link])
  2761. [ingres_field_nullable | Test if a field is nullable, returns bool]
  2762. ingres_field_nullable(|int index, [resource link])
  2763. [ingres_field_precision | Get the precision of a field, returns int]
  2764. ingres_field_precision(|int index, [resource link])
  2765. [ingres_field_scale | Get the scale of a field, returns int]
  2766. ingres_field_scale(|int index, [resource link])
  2767. [ingres_field_type | Get the type of a field in a query result, returns string]
  2768. ingres_field_type(|int index, [resource link])
  2769. [ingres_num_fields | Get the number of fields returned by the last query, returns int]
  2770. ingres_num_fields(|[resource link])
  2771. [ingres_num_rows | Get the number of rows affected or returned by the last query, returns int]
  2772. ingres_num_rows(|[resource link])
  2773. [ingres_pconnect | Open a persistent connection to an Ingres II database, returns resource]
  2774. ingres_pconnect(|[string database], [string username], [string password])
  2775. [ingres_query | Send a SQL query to Ingres II, returns bool]
  2776. ingres_query(|string query, [resource link])
  2777. [ingres_rollback | Roll back a transaction, returns bool]
  2778. ingres_rollback(|[resource link])
  2779. ; -----------------------------------------------------------------------------
  2780. ; IRC Gateway - IRC Gateway Functions
  2781. ; -----------------------------------------------------------------------------
  2782. [ircg_channel_mode | Set channel mode flags for user, returns bool]
  2783. ircg_channel_mode(|resource connection, string channel, string mode_spec, string nick)
  2784. [ircg_disconnect | Close connection to server, returns bool]
  2785. ircg_disconnect(|resource connection, string reason)
  2786. [ircg_fetch_error_msg | Returns the error from previous IRCG operation, returns array]
  2787. ircg_fetch_error_msg(|resource connection)
  2788. [ircg_get_username | Get username for connection, returns string]
  2789. ircg_get_username(|resource connection)
  2790. [ircg_html_encode | Encodes HTML preserving output, returns bool]
  2791. ircg_html_encode(|string html_string)
  2792. [ircg_ignore_add | Add a user to your ignore list on a server, returns bool]
  2793. ircg_ignore_add(|resource connection, string nick)
  2794. [ircg_ignore_del | Remove a user from your ignore list on a server, returns bool]
  2795. ircg_ignore_del(|resource connection, string nick)
  2796. [ircg_is_conn_alive | Check connection status, returns bool]
  2797. ircg_is_conn_alive(|resource connection)
  2798. [ircg_join | Join a channel on a connected server, returns bool]
  2799. ircg_join(|resource connection, string channel, [string key])
  2800. [ircg_kick | Kick a user out of a channel on server, returns bool]
  2801. ircg_kick(|resource connection, string channel, string nick, string reason)
  2802. [ircg_lookup_format_messages | Check for the existence of a format message set, returns bool]
  2803. ircg_lookup_format_messages(|string name)
  2804. [ircg_msg | Send message to channel or user on server, returns bool]
  2805. ircg_msg(|resource connection, string recipient, string message, [boolean suppress])
  2806. [ircg_nick | Change nickname on server, returns bool]
  2807. ircg_nick(|resource connection, string nick)
  2808. [ircg_nickname_escape | Encode special characters in nickname to be IRC-compliant, returns string]
  2809. ircg_nickname_escape(|string nick)
  2810. [ircg_nickname_unescape | Decodes encoded nickname, returns string]
  2811. ircg_nickname_unescape(|string nick)
  2812. [ircg_notice | Send a notice to a user on server, returns bool]
  2813. ircg_notice(|resource connection, string , string message)
  2814. [ircg_part | Leave a channel on server, returns bool]
  2815. ircg_part(|resource connection, string channel)
  2816. [ircg_pconnect | Connect to an IRC server, returns resource]
  2817. ircg_pconnect(|string username, [string server_ip], [int server_port], [string msg_format], [array ctcp_messages], [array user_settings])
  2818. [ircg_register_format_messages | Register a format message set, returns bool]
  2819. ircg_register_format_messages(|string name, array messages)
  2820. [ircg_set_current | Set current connection for output, returns bool]
  2821. ircg_set_current(|resource connection)
  2822. [ircg_set_file | Set logfile for connection, returns bool]
  2823. ircg_set_file(|resource connection, string path)
  2824. [ircg_set_on_die | Set action to be executed when connection dies, returns bool]
  2825. ircg_set_on_die(|resource connection, string host, int port, string data)
  2826. [ircg_topic | Set topic for channel on server, returns bool]
  2827. ircg_topic(|resource connection, string channel, string new_topic)
  2828. [ircg_whois | Query server for user information, returns bool]
  2829. ircg_whois(|resource connection, string nick)
  2830. ; -----------------------------------------------------------------------------
  2831. ; Java - PHP / Java Integration
  2832. ; -----------------------------------------------------------------------------
  2833. [java_last_exception_clear | Clear last Java exception, returns void]
  2834. java_last_exception_clear()|
  2835. [java_last_exception_get | Get last Java exception, returns exception]
  2836. java_last_exception_get()|
  2837. ; -----------------------------------------------------------------------------
  2838. ; LDAP - LDAP functions
  2839. ; -----------------------------------------------------------------------------
  2840. [ldap_8859_to_t61 | Translate 8859 characters to t61 characters, returns string]
  2841. ldap_8859_to_t61(|string value)
  2842. [ldap_add | Add entries to LDAP directory, returns bool]
  2843. ldap_add(|resource link_identifier, string dn, array entry)
  2844. [ldap_bind | Bind to LDAP directory, returns bool]
  2845. ldap_bind(|resource link_identifier, [string bind_rdn], [string bind_password])
  2846. [ldap_close | Close link to LDAP server, returns bool]
  2847. ldap_close(|resource link_identifier)
  2848. [ldap_compare | Compare value of attribute found in entry specified with DN, returns bool]
  2849. ldap_compare(|resource link_identifier, string dn, string attribute, string value)
  2850. [ldap_connect | Connect to an LDAP server, returns resource]
  2851. ldap_connect(|[string hostname], [int port])
  2852. [ldap_count_entries | Count the number of entries in a search, returns int]
  2853. ldap_count_entries(|resource link_identifier, resource result_identifier)
  2854. [ldap_delete | Delete an entry from a directory, returns bool]
  2855. ldap_delete(|resource link_identifier, string dn)
  2856. [ldap_dn2ufn | Convert DN to User Friendly Naming format, returns string]
  2857. ldap_dn2ufn(|string dn)
  2858. [ldap_err2str | Convert LDAP error number into string error message, returns string]
  2859. ldap_err2str(|int errno)
  2860. [ldap_errno | Return the LDAP error number of the last LDAP command, returns int]
  2861. ldap_errno(|resource link_identifier)
  2862. [ldap_error | Return the LDAP error message of the last LDAP command, returns string]
  2863. ldap_error(|resource link_identifier)
  2864. [ldap_explode_dn | Splits DN into its component parts, returns array]
  2865. ldap_explode_dn(|string dn, int with_attrib)
  2866. [ldap_first_attribute | Return first attribute, returns string]
  2867. ldap_first_attribute(|resource link_identifier, resource result_entry_identifier, int ber_identifier)
  2868. [ldap_first_entry | Return first result id, returns resource]
  2869. ldap_first_entry(|resource link_identifier, resource result_identifier)
  2870. [ldap_first_reference | Return first reference, returns resource]
  2871. ldap_first_reference(|resource link, resource result)
  2872. [ldap_free_result | Free result memory, returns bool]
  2873. ldap_free_result(|resource result_identifier)
  2874. [ldap_get_attributes | Get attributes from a search result entry, returns array]
  2875. ldap_get_attributes(|resource link_identifier, resource result_entry_identifier)
  2876. [ldap_get_dn | Get the DN of a result entry, returns string]
  2877. ldap_get_dn(|resource link_identifier, resource result_entry_identifier)
  2878. [ldap_get_entries | Get all result entries, returns array]
  2879. ldap_get_entries(|resource link_identifier, resource result_identifier)
  2880. [ldap_get_option | Get the current value for given option, returns bool]
  2881. ldap_get_option(|resource link_identifier, int option, mixed retval)
  2882. [ldap_get_values_len | Get all binary values from a result entry, returns array]
  2883. ldap_get_values_len(|resource link_identifier, resource result_entry_identifier, string attribute)
  2884. [ldap_get_values | Get all values from a result entry, returns array]
  2885. ldap_get_values(|resource link_identifier, resource result_entry_identifier, string attribute)
  2886. [ldap_list | Single-level search, returns resource]
  2887. ldap_list(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2888. [ldap_mod_add | Add attribute values to current attributes, returns bool]
  2889. ldap_mod_add(|resource link_identifier, string dn, array entry)
  2890. [ldap_mod_del | Delete attribute values from current attributes, returns bool]
  2891. ldap_mod_del(|resource link_identifier, string dn, array entry)
  2892. [ldap_mod_replace | Replace attribute values with new ones, returns bool]
  2893. ldap_mod_replace(|resource link_identifier, string dn, array entry)
  2894. [ldap_modify | Modify an LDAP entry, returns bool]
  2895. ldap_modify(|resource link_identifier, string dn, array entry)
  2896. [ldap_next_attribute | Get the next attribute in result, returns string]
  2897. ldap_next_attribute(|resource link_identifier, resource result_entry_identifier, resource ber_identifier)
  2898. [ldap_next_entry | Get next result entry, returns resource]
  2899. ldap_next_entry(|resource link_identifier, resource result_entry_identifier)
  2900. [ldap_next_reference | Get next reference, returns resource]
  2901. ldap_next_reference(|resource link, resource entry)
  2902. [ldap_parse_reference | Extract information from reference entry, returns bool]
  2903. ldap_parse_reference(|resource link, resource entry, array referrals)
  2904. [ldap_parse_result | Extract information from result, returns bool]
  2905. ldap_parse_result(|resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)
  2906. [ldap_read | Read an entry, returns resource]
  2907. ldap_read(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2908. [ldap_rename | Modify the name of an entry, returns bool]
  2909. ldap_rename(|resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn)
  2910. [ldap_search | Search LDAP tree, returns resource]
  2911. ldap_search(|resource link_identifier, string base_dn, string filter, [array attributes], [int attrsonly], [int sizelimit], [int timelimit], [int deref])
  2912. [ldap_set_option | Set the value of the given option, returns bool]
  2913. ldap_set_option(|resource link_identifier, int option, mixed newval)
  2914. [ldap_set_rebind_proc | Set a callback function to do re-binds on referral chasing., returns bool]
  2915. ldap_set_rebind_proc(|resource link, string callback)
  2916. [ldap_sort | Sort LDAP result entries, returns bool]
  2917. ldap_sort(|resource link, resource result, string sortfilter)
  2918. [ldap_start_tls | Start TLS, returns bool]
  2919. ldap_start_tls(|resource link)
  2920. [ldap_t61_to_8859 | Translate t61 characters to 8859 characters, returns string]
  2921. ldap_t61_to_8859(|string value)
  2922. [ldap_unbind | Unbind from LDAP directory, returns bool]
  2923. ldap_unbind(|resource link_identifier)
  2924. ; -----------------------------------------------------------------------------
  2925. ; Mail - Mail functions
  2926. ; -----------------------------------------------------------------------------
  2927. [ezmlm_hash | Calculate the hash value needed by EZMLM, returns int]
  2928. ezmlm_hash(|string addr)
  2929. [mail | send mail, returns bool]
  2930. mail(|string to, string subject, string message, [string additional_headers], [string additional_parameters])
  2931. ; -----------------------------------------------------------------------------
  2932. ; mailparse - mailparse functions
  2933. ; -----------------------------------------------------------------------------
  2934. [mailparse_determine_best_xfer_encoding | Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able, returns int]
  2935. mailparse_determine_best_xfer_encoding(|resource fp)
  2936. [mailparse_msg_create | Returns a handle that can be used to parse a message, returns int]
  2937. mailparse_msg_create()|
  2938. [mailparse_msg_extract_part_file | Extracts/decodes a message section, decoding the transfer encoding, returns string]
  2939. mailparse_msg_extract_part_file(|resource rfc2045, string filename, [string callbackfunc])
  2940. [mailparse_msg_extract_part | Extracts/decodes a message section. If callbackfunc is not specified, the contents will be sent to "stdout", returns void]
  2941. mailparse_msg_extract_part(|resource rfc2045, string msgbody, [string callbackfunc])
  2942. [mailparse_msg_free | Frees a handle allocated by mailparse_msg_create, returns void]
  2943. mailparse_msg_free(|resource rfc2045buf)
  2944. [mailparse_msg_get_part_data | Returns an associative array of info about the message, returns array]
  2945. mailparse_msg_get_part_data(|resource rfc2045)
  2946. [mailparse_msg_get_part | Returns a handle on a given section in a mimemessage, returns int]
  2947. mailparse_msg_get_part(|resource rfc2045, string mimesection)
  2948. [mailparse_msg_get_structure | Returns an array of mime section names in the supplied message, returns array]
  2949. mailparse_msg_get_structure(|resource rfc2045)
  2950. [mailparse_msg_parse_file | Parse file and return a resource representing the structure, returns resource]
  2951. mailparse_msg_parse_file(|string filename)
  2952. [mailparse_msg_parse | Incrementally parse data into buffer, returns void]
  2953. mailparse_msg_parse(|resource rfc2045buf, string data)
  2954. [mailparse_rfc822_parse_addresses | Parse addresses and returns a hash containing that data, returns array]
  2955. mailparse_rfc822_parse_addresses(|string addresses)
  2956. [mailparse_stream_encode | Streams data from source file pointer, apply encoding and write to destfp, returns bool]
  2957. mailparse_stream_encode(|resource sourcefp, resource destfp, string encoding)
  2958. [mailparse_uudecode_all | Scans the data from fp and extract each embedded uuencoded file. Returns an array listing filename information, returns array]
  2959. mailparse_uudecode_all(|resource fp)
  2960. ; -----------------------------------------------------------------------------
  2961. ; Math - Mathematical Functions
  2962. ; -----------------------------------------------------------------------------
  2963. [abs | Absolute value, returns mixed]
  2964. abs(|mixed number)
  2965. [acos | Arc cosine, returns float]
  2966. acos(|float arg)
  2967. [acosh | Inverse hyperbolic cosine, returns float]
  2968. acosh(|float arg)
  2969. [asin | Arc sine, returns float]
  2970. asin(|float arg)
  2971. [asinh | Inverse hyperbolic sine, returns float]
  2972. asinh(|float arg)
  2973. [atan2 | arc tangent of two variables, returns float]
  2974. atan2(|float y, float x)
  2975. [atan | Arc tangent, returns float]
  2976. atan(|float arg)
  2977. [atanh | Inverse hyperbolic tangent, returns float]
  2978. atanh(|float arg)
  2979. [base_convert | Convert a number between arbitrary bases, returns string]
  2980. base_convert(|string number, int frombase, int tobase)
  2981. [bindec | Binary to decimal, returns int]
  2982. bindec(|string binary_string)
  2983. [ceil | Round fractions up, returns float]
  2984. ceil(|float value)
  2985. [cos | Cosine, returns float]
  2986. cos(|float arg)
  2987. [cosh | Hyperbolic cosine, returns float]
  2988. cosh(|float arg)
  2989. [decbin | Decimal to binary, returns string]
  2990. decbin(|int number)
  2991. [dechex | Decimal to hexadecimal, returns string]
  2992. dechex(|int number)
  2993. [decoct | Decimal to octal, returns string]
  2994. decoct(|int number)
  2995. [deg2rad | Converts the number in degrees to the radian equivalent, returns float]
  2996. deg2rad(|float number)
  2997. [exp | Calculates the exponent of e (the Neperian or Natural logarithm base), returns float]
  2998. exp(|float arg)
  2999. [expm1 | Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero, returns float]
  3000. expm1(|float number)
  3001. [floor | Round fractions down, returns float]
  3002. floor(|float value)
  3003. [fmod | Returns the floating point remainder (modulo) of the division of the arguments, returns float]
  3004. fmod(|float x, float y)
  3005. [getrandmax | Show largest possible random value, returns int]
  3006. getrandmax()|
  3007. [hexdec | Hexadecimal to decimal, returns int]
  3008. hexdec(|string hex_string)
  3009. [hypot | Returns sqrt( num1*num1 + num2*num2), returns float]
  3010. hypot(|float num1, float num2)
  3011. [is_finite | Finds whether a value is a legal finite number, returns bool]
  3012. is_finite(|float val)
  3013. [is_infinite | Finds whether a value is infinite, returns bool]
  3014. is_infinite(|float val)
  3015. [is_nan | Finds whether a value is not a number, returns bool]
  3016. is_nan(|float val)
  3017. [lcg_value | Combined linear congruential generator, returns float]
  3018. lcg_value()|
  3019. [log10 | Base-10 logarithm, returns float]
  3020. log10(|float arg)
  3021. [log1p | Returns log(1 + number), computed in a way that accurate even when the val ue of number is close to zero, returns float]
  3022. log1p(|float number)
  3023. [log | Natural logarithm, returns float]
  3024. log(|float arg, [float base])
  3025. [max | Find highest value, returns mixed]
  3026. max(|number arg1, number arg2, [number ...])
  3027. [min | Find lowest value, returns mixed]
  3028. min(|number arg1, number arg2, [number ...])
  3029. [mt_getrandmax | Show largest possible random value, returns int]
  3030. mt_getrandmax()|
  3031. [mt_rand | Generate a better random value, returns int]
  3032. mt_rand(|[int min], int max)
  3033. [mt_srand | Seed the better random number generator, returns void]
  3034. mt_srand(|int seed)
  3035. [octdec | Octal to decimal, returns int]
  3036. octdec(|string octal_string)
  3037. [pi | Get value of pi, returns float]
  3038. pi()|
  3039. [pow | Exponential expression, returns number]
  3040. pow(|number base, number exp)
  3041. [rad2deg | Converts the radian number to the equivalent number in degrees, returns float]
  3042. rad2deg(|float number)
  3043. [rand | Generate a random value, returns int]
  3044. rand(|[int min], int max)
  3045. [round | Rounds a float, returns float]
  3046. round(|float val, [int precision])
  3047. [sin | Sine, returns float]
  3048. sin(|float arg)
  3049. [sinh | Hyperbolic sine, returns float]
  3050. sinh(|float arg)
  3051. [sqrt | Square root, returns float]
  3052. sqrt(|float arg)
  3053. [srand | Seed the random number generator, returns void]
  3054. srand(|int seed)
  3055. [tan | Tangent, returns float]
  3056. tan(|float arg)
  3057. [tanh | Hyperbolic tangent, returns float]
  3058. tanh(|float arg)
  3059. ; -----------------------------------------------------------------------------
  3060. ; Multi-Byte String - Multi-Byte String Functions
  3061. ; -----------------------------------------------------------------------------
  3062. [mb_convert_case | Perform case folding on a string, returns string]
  3063. mb_convert_case(|string str, int mode, [string encoding])
  3064. [mb_convert_encoding | Convert character encoding, returns string]
  3065. mb_convert_encoding(|string str, string to-encoding, [mixed from-encoding])
  3066. [mb_convert_kana | Convert "kana" one from another ("zen-kaku" ,"han-kaku" and more), returns string]
  3067. mb_convert_kana(|string str, string option, [mixed encoding])
  3068. [mb_convert_variables | Convert character code in variable(s), returns string]
  3069. mb_convert_variables(|string to-encoding, mixed from-encoding, mixed vars)
  3070. [mb_decode_mimeheader | Decode string in MIME header field, returns string]
  3071. mb_decode_mimeheader(|string str)
  3072. [mb_decode_numericentity | Decode HTML numeric string reference to character, returns string]
  3073. mb_decode_numericentity(|string str, array convmap, [string encoding])
  3074. [mb_detect_encoding | Detect character encoding, returns string]
  3075. mb_detect_encoding(|string str, [mixed encoding-list])
  3076. [mb_detect_order | Set/Get character encoding detection order, returns array]
  3077. mb_detect_order(|[mixed encoding-list])
  3078. [mb_encode_mimeheader | Encode string for MIME header, returns string]
  3079. mb_encode_mimeheader(|string str, [string charset], [string transfer-encoding], [string linefeed])
  3080. [mb_encode_numericentity | Encode character to HTML numeric string reference, returns string]
  3081. mb_encode_numericentity(|string str, array convmap, [string encoding])
  3082. [mb_ereg_match | Regular expression match for multibyte string, returns bool]
  3083. mb_ereg_match(|string pattern, string string, [string option])
  3084. [mb_ereg_replace | Replace regular expression with multibyte support, returns string]
  3085. mb_ereg_replace(|string pattern, string replacement, string string, [array option])
  3086. [mb_ereg_search_getpos | Returns start point for next regular expression match, returns array]
  3087. mb_ereg_search_getpos()|
  3088. [mb_ereg_search_getregs | Retrieve the result from the last multibyte regular expression match, returns array]
  3089. mb_ereg_search_getregs()|
  3090. [mb_ereg_search_init | Setup string and regular expression for multibyte regular expression match, returns array]
  3091. mb_ereg_search_init(|string string, [string pattern], [string option])
  3092. [mb_ereg_search_pos | Return position and length of matched part of multibyte regular expression for predefined multibyte string, returns array]
  3093. mb_ereg_search_pos(|[string pattern], [string option])
  3094. [mb_ereg_search_regs | Returns the matched part of multibyte regular expression, returns array]
  3095. mb_ereg_search_regs(|[string pattern], [string option])
  3096. [mb_ereg_search_setpos | Set start point of next regular expression match, returns array]
  3097. mb_ereg_search_setpos()|
  3098. [mb_ereg_search | Multibyte regular expression match for predefined multibyte string, returns bool]
  3099. mb_ereg_search(|[string pattern], [string option])
  3100. [mb_ereg | Regular expression match with multibyte support, returns int]
  3101. mb_ereg(|string pattern, string string, [array regs])
  3102. [mb_eregi_replace | Replace regular expression with multibyte support ignoring case, returns string]
  3103. mb_eregi_replace(|string pattern, string replace, string string)
  3104. [mb_eregi | Regular expression match ignoring case with multibyte support, returns int]
  3105. mb_eregi(|string pattern, string string, [array regs])
  3106. [mb_get_info | Get internal settings of mbstring, returns string]
  3107. mb_get_info(|[string type])
  3108. [mb_http_input | Detect HTTP input character encoding, returns string]
  3109. mb_http_input(|[string type])
  3110. [mb_http_output | Set/Get HTTP output character encoding, returns string]
  3111. mb_http_output(|[string encoding])
  3112. [mb_internal_encoding | Set/Get internal character encoding, returns string]
  3113. mb_internal_encoding(|[string encoding])
  3114. [mb_language | Set/Get current language, returns string]
  3115. mb_language(|[string language])
  3116. [mb_output_handler | Callback function converts character encoding in output buffer, returns string]
  3117. mb_output_handler(|string contents, int status)
  3118. [mb_parse_str | Parse GET/POST/COOKIE data and set global variable, returns bool]
  3119. mb_parse_str(|string encoded_string, [array result])
  3120. [mb_preferred_mime_name | Get MIME charset string, returns string]
  3121. mb_preferred_mime_name(|string encoding)
  3122. [mb_regex_encoding | Returns current encoding for multibyte regex as string, returns string]
  3123. mb_regex_encoding(|[string encoding])
  3124. [mb_regex_set_options | Set/Get the default options for mbregex functions, returns string]
  3125. mb_regex_set_options(|[string options])
  3126. [mb_send_mail | Send encoded mail., returns bool]
  3127. mb_send_mail(|string to, string subject, string message, [string additional_headers], [string additional_parameter])
  3128. [mb_split | Split multibyte string using regular expression, returns array]
  3129. mb_split(|string pattern, string string, [int limit])
  3130. [mb_strcut | Get part of string, returns string]
  3131. mb_strcut(|string str, int start, [int length], [string encoding])
  3132. [mb_strimwidth | Get truncated string with specified width, returns string]
  3133. mb_strimwidth(|string str, int start, int width, string trimmarker, [string encoding])
  3134. [mb_strlen | Get string length, returns string]
  3135. mb_strlen(|string str, [string encoding])
  3136. [mb_strpos | Find position of first occurrence of string in a string, returns int]
  3137. mb_strpos(|string haystack, string needle, [int offset], [string encoding])
  3138. [mb_strrpos | Find position of last occurrence of a string in a string, returns int]
  3139. mb_strrpos(|string haystack, string needle, [string encoding])
  3140. [mb_strtolower | Make a string lowercase, returns string]
  3141. mb_strtolower(|string str, [string encoding])
  3142. [mb_strtoupper | Make a string uppercase, returns string]
  3143. mb_strtoupper(|string str, [string encoding])
  3144. [mb_strwidth | Return width of string, returns int]
  3145. mb_strwidth(|string str, [string encoding])
  3146. [mb_substitute_character | Set/Get substitution character, returns mixed]
  3147. mb_substitute_character(|[mixed substrchar])
  3148. [mb_substr_count | Count the number of substring occurrences, returns int]
  3149. mb_substr_count(|string haystack, string needle, [string encoding])
  3150. [mb_substr | Get part of string, returns string]
  3151. mb_substr(|string str, int start, [int length], [string encoding])
  3152. ; -----------------------------------------------------------------------------
  3153. ; MCAL - MCAL functions
  3154. ; -----------------------------------------------------------------------------
  3155. [mcal_append_event | Store a new event into an MCAL calendar, returns int]
  3156. mcal_append_event(|int mcal_stream)
  3157. [mcal_close | Close an MCAL stream, returns int]
  3158. mcal_close(|int mcal_stream, int flags)
  3159. [mcal_create_calendar | Create a new MCAL calendar, returns bool]
  3160. mcal_create_calendar(|int stream, string calendar)
  3161. [mcal_date_compare | Compares two dates, returns int]
  3162. mcal_date_compare(|int a_year, int a_month, int a_day, int b_year, int b_month, int b_day)
  3163. [mcal_date_valid | Returns TRUE if the given year, month, day is a valid date, returns int]
  3164. mcal_date_valid(|int year, int month, int day)
  3165. [mcal_day_of_week | Returns the day of the week of the given date, returns int]
  3166. mcal_day_of_week(|int year, int month, int day)
  3167. [mcal_day_of_year | Returns the day of the year of the given date, returns int]
  3168. mcal_day_of_year(|int year, int month, int day)
  3169. [mcal_days_in_month | Returns the number of days in a month, returns int]
  3170. mcal_days_in_month(|int month, int leap_year)
  3171. [mcal_delete_calendar | Delete an MCAL calendar, returns string]
  3172. mcal_delete_calendar(|int stream, string calendar)
  3173. [mcal_delete_event | Delete an event from an MCAL calendar, returns int]
  3174. mcal_delete_event(|int mcal_stream, [int event_id])
  3175. [mcal_event_add_attribute | Adds an attribute and a value to the streams global event structure, returns void]
  3176. mcal_event_add_attribute(|int stream, string attribute, string value)
  3177. [mcal_event_init | Initializes a streams global event structure, returns int]
  3178. mcal_event_init(|int stream)
  3179. [mcal_event_set_alarm | Sets the alarm of the streams global event structure, returns int]
  3180. mcal_event_set_alarm(|int stream, int alarm)
  3181. [mcal_event_set_category | Sets the category of the streams global event structure, returns int]
  3182. mcal_event_set_category(|int stream, string category)
  3183. [mcal_event_set_class | Sets the class of the streams global event structure, returns int]
  3184. mcal_event_set_class(|int stream, int class)
  3185. [mcal_event_set_description | Sets the description of the streams global event structure, returns int]
  3186. mcal_event_set_description(|int stream, string description)
  3187. [mcal_event_set_end | Sets the end date and time of the streams global event structure, returns int]
  3188. mcal_event_set_end(|int stream, int year, int month, [int day], [int hour], [int min], [int sec])
  3189. [mcal_event_set_recur_daily | Sets the recurrence of the streams global event structure, returns int]
  3190. mcal_event_set_recur_daily(|int stream, int year, int month, int day, int interval)
  3191. [mcal_event_set_recur_monthly_mday | Sets the recurrence of the streams global event structure, returns int]
  3192. mcal_event_set_recur_monthly_mday(|int stream, int year, int month, int day, int interval)
  3193. [mcal_event_set_recur_monthly_wday | Sets the recurrence of the streams global event structure, returns int]
  3194. mcal_event_set_recur_monthly_wday(|int stream, int year, int month, int day, int interval)
  3195. [mcal_event_set_recur_none | Sets the recurrence of the streams global event structure, returns int]
  3196. mcal_event_set_recur_none(|int stream)
  3197. [mcal_event_set_recur_weekly | Sets the recurrence of the streams global event structure, returns int]
  3198. mcal_event_set_recur_weekly(|int stream, int year, int month, int day, int interval, int weekdays)
  3199. [mcal_event_set_recur_yearly | Sets the recurrence of the streams global event structure, returns int]
  3200. mcal_event_set_recur_yearly(|int stream, int year, int month, int day, int interval)
  3201. [mcal_event_set_start | Sets the start date and time of the streams global event structure, returns int]
  3202. mcal_event_set_start(|int stream, int year, int month, [int day], [int hour], [int min], [int sec])
  3203. [mcal_event_set_title | Sets the title of the streams global event structure, returns int]
  3204. mcal_event_set_title(|int stream, string title)
  3205. [mcal_expunge | Deletes all events marked for being expunged., returns int]
  3206. mcal_expunge(|int stream)
  3207. [mcal_fetch_current_stream_event | Returns an object containing the current streams event structure, returns object]
  3208. mcal_fetch_current_stream_event(|int stream)
  3209. [mcal_fetch_event | Fetches an event from the calendar stream, returns object]
  3210. mcal_fetch_event(|int mcal_stream, int event_id, [int options])
  3211. [mcal_is_leap_year | Returns if the given year is a leap year or not, returns int]
  3212. mcal_is_leap_year(|int year)
  3213. [mcal_list_alarms | Return a list of events that has an alarm triggered at the given datetime, returns array]
  3214. mcal_list_alarms(|int mcal_stream, [int begin_year], [int begin_month], [int begin_day], [int end_year], [int end_month], [int end_day])
  3215. [mcal_list_events | Return a list of IDs for a date or a range of dates, returns array]
  3216. mcal_list_events(|int mcal_stream, object begin_date, [object end_date])
  3217. [mcal_next_recurrence | Returns the next recurrence of the event, returns int]
  3218. mcal_next_recurrence(|int stream, int weekstart, array next)
  3219. [mcal_open | Opens up an MCAL connection, returns int]
  3220. mcal_open(|string calendar, string username, string password, [int options])
  3221. [mcal_popen | Opens up a persistent MCAL connection, returns int]
  3222. mcal_popen(|string calendar, string username, string password, [int options])
  3223. [mcal_rename_calendar | Rename an MCAL calendar, returns string]
  3224. mcal_rename_calendar(|int stream, string old_name, string new_name)
  3225. [mcal_reopen | Reopens an MCAL connection, returns int]
  3226. mcal_reopen(|string calendar, [int options])
  3227. [mcal_snooze | Turn off an alarm for an event, returns bool]
  3228. mcal_snooze(|int stream_id, int event_id)
  3229. [mcal_store_event | Modify an existing event in an MCAL calendar, returns int]
  3230. mcal_store_event(|int mcal_stream)
  3231. [mcal_time_valid | Returns TRUE if the given year, month, day is a valid time, returns int]
  3232. mcal_time_valid(|int hour, int minutes, int seconds)
  3233. [mcal_week_of_year | Returns the week number of the given date, returns int]
  3234. mcal_week_of_year(|int day, int month, int year)
  3235. ; -----------------------------------------------------------------------------
  3236. ; mcrypt - Mcrypt Encryption Functions
  3237. ; -----------------------------------------------------------------------------
  3238. [mcrypt_cbc | Encrypt/decrypt data in CBC mode, returns string]
  3239. mcrypt_cbc(|int cipher, string key, string data, int mode, [string iv])
  3240. [mcrypt_cfb | Encrypt/decrypt data in CFB mode, returns string]
  3241. mcrypt_cfb(|int cipher, string key, string data, int mode, string iv)
  3242. [mcrypt_create_iv | Create an initialization vector (IV) from a random source, returns string]
  3243. mcrypt_create_iv(|int size, int source)
  3244. [mcrypt_decrypt | Decrypts crypttext with given parameters, returns string]
  3245. mcrypt_decrypt(|string cipher, string key, string data, string mode, [string iv])
  3246. [mcrypt_ecb | Encrypt/decrypt data in ECB mode, returns string]
  3247. mcrypt_ecb(|int cipher, string key, string data, int mode)
  3248. [mcrypt_enc_get_algorithms_name | Returns the name of the opened algorithm, returns string]
  3249. mcrypt_enc_get_algorithms_name(|resource td)
  3250. [mcrypt_enc_get_block_size | Returns the blocksize of the opened algorithm, returns int]
  3251. mcrypt_enc_get_block_size(|resource td)
  3252. [mcrypt_enc_get_iv_size | Returns the size of the IV of the opened algorithm, returns int]
  3253. mcrypt_enc_get_iv_size(|resource td)
  3254. [mcrypt_enc_get_key_size | Returns the maximum supported keysize of the opened mode, returns int]
  3255. mcrypt_enc_get_key_size(|resource td)
  3256. [mcrypt_enc_get_modes_name | Returns the name of the opened mode, returns string]
  3257. mcrypt_enc_get_modes_name(|resource td)
  3258. [mcrypt_enc_get_supported_key_sizes | Returns an array with the supported keysizes of the opened algorithm, returns array]
  3259. mcrypt_enc_get_supported_key_sizes(|resource td)
  3260. [mcrypt_enc_is_block_algorithm_mode | Checks whether the encryption of the opened mode works on blocks, returns bool]
  3261. mcrypt_enc_is_block_algorithm_mode(|resource td)
  3262. [mcrypt_enc_is_block_algorithm | Checks whether the algorithm of the opened mode is a block algorithm, returns bool]
  3263. mcrypt_enc_is_block_algorithm(|resource td)
  3264. [mcrypt_enc_is_block_mode | Checks whether the opened mode outputs blocks, returns bool]
  3265. mcrypt_enc_is_block_mode(|resource td)
  3266. [mcrypt_enc_self_test | This function runs a self test on the opened module, returns bool]
  3267. mcrypt_enc_self_test(|resource td)
  3268. [mcrypt_encrypt | Encrypts plaintext with given parameters, returns string]
  3269. mcrypt_encrypt(|string cipher, string key, string data, string mode, [string iv])
  3270. [mcrypt_generic_deinit | This function deinitializes an encryption module, returns bool]
  3271. mcrypt_generic_deinit(|resource td)
  3272. [mcrypt_generic_end | This function terminates encryption, returns bool]
  3273. mcrypt_generic_end(|resource td)
  3274. [mcrypt_generic_init | This function initializes all buffers needed for encryption, returns int]
  3275. mcrypt_generic_init(|resource td, string key, string iv)
  3276. [mcrypt_generic | This function encrypts data, returns string]
  3277. mcrypt_generic(|resource td, string data)
  3278. [mcrypt_get_block_size | Get the block size of the specified cipher, returns int]
  3279. mcrypt_get_block_size(|int cipher)
  3280. [mcrypt_get_cipher_name | Get the name of the specified cipher, returns string]
  3281. mcrypt_get_cipher_name(|int cipher)
  3282. [mcrypt_get_iv_size | Returns the size of the IV belonging to a specific cipher/mode combination, returns int]
  3283. mcrypt_get_iv_size(|resource td)
  3284. [mcrypt_get_key_size | Get the key size of the specified cipher, returns int]
  3285. mcrypt_get_key_size(|int cipher)
  3286. [mcrypt_list_algorithms | Get an array of all supported ciphers, returns array]
  3287. mcrypt_list_algorithms(|[string lib_dir])
  3288. [mcrypt_list_modes | Get an array of all supported modes, returns array]
  3289. mcrypt_list_modes(|[string lib_dir])
  3290. [mcrypt_module_close | Close the mcrypt module, returns bool]
  3291. mcrypt_module_close(|resource td)
  3292. [mcrypt_module_get_algo_block_size | Returns the blocksize of the specified algorithm, returns int]
  3293. mcrypt_module_get_algo_block_size(|string algorithm, [string lib_dir])
  3294. [mcrypt_module_get_algo_key_size | Returns the maximum supported keysize of the opened mode, returns int]
  3295. mcrypt_module_get_algo_key_size(|string algorithm, [string lib_dir])
  3296. [mcrypt_module_get_supported_key_sizes | Returns an array with the supported keysizes of the opened algorithm, returns array]
  3297. mcrypt_module_get_supported_key_sizes(|string algorithm, [string lib_dir])
  3298. [mcrypt_module_is_block_algorithm_mode | This function returns if the the specified module is a block algorithm or not, returns bool]
  3299. mcrypt_module_is_block_algorithm_mode(|string mode, [string lib_dir])
  3300. [mcrypt_module_is_block_algorithm | This function checks whether the specified algorithm is a block algorithm, returns bool]
  3301. mcrypt_module_is_block_algorithm(|string algorithm, [string lib_dir])
  3302. [mcrypt_module_is_block_mode | This function returns if the the specified mode outputs blocks or not, returns bool]
  3303. mcrypt_module_is_block_mode(|string mode, [string lib_dir])
  3304. [mcrypt_module_open | Opens the module of the algorithm and the mode to be used, returns resource]
  3305. mcrypt_module_open(|string algorithm, string algorithm_directory, string mode, string mode_directory)
  3306. [mcrypt_module_self_test | This function runs a self test on the specified module, returns bool]
  3307. mcrypt_module_self_test(|string algorithm, [string lib_dir])
  3308. [mcrypt_ofb | Encrypt/decrypt data in OFB mode, returns string]
  3309. mcrypt_ofb(|int cipher, string key, string data, int mode, string iv)
  3310. [mdecrypt_generic | Decrypt data, returns string]
  3311. mdecrypt_generic(|resource td, string data)
  3312. ; -----------------------------------------------------------------------------
  3313. ; MCVE - MCVE Payment Functions
  3314. ; -----------------------------------------------------------------------------
  3315. [mcve_adduser | Add an MCVE user using usersetup structure, returns int]
  3316. mcve_adduser(|resource conn, string admin_password, int usersetup)
  3317. [mcve_adduserarg | Add a value to user configuration structure, returns int]
  3318. mcve_adduserarg(|resource usersetup, int argtype, string argval)
  3319. [mcve_bt | Get unsettled batch totals, returns int]
  3320. mcve_bt(|resource conn, string username, string password)
  3321. [mcve_checkstatus | Check to see if a transaction has completed, returns int]
  3322. mcve_checkstatus(|resource conn, int identifier)
  3323. [mcve_chkpwd | Verify Password, returns int]
  3324. mcve_chkpwd(|resource conn, string username, string password)
  3325. [mcve_chngpwd | Change the system administrator's password, returns int]
  3326. mcve_chngpwd(|resource conn, string admin_password, string new_password)
  3327. [mcve_completeauthorizations | Number of complete authorizations in queue, returning an array of their identifiers, returns int]
  3328. mcve_completeauthorizations(|resource conn, int &array)
  3329. [mcve_connect | Establish the connection to MCVE, returns int]
  3330. mcve_connect(|resource conn)
  3331. [mcve_connectionerror | Get a textual representation of why a connection failed, returns string]
  3332. mcve_connectionerror(|resource conn)
  3333. [mcve_deleteresponse | Delete specified transaction from MCVE_CONN structure, returns bool]
  3334. mcve_deleteresponse(|resource conn, int identifier)
  3335. [mcve_deletetrans | Delete specified transaction from MCVE_CONN structure, returns bool]
  3336. mcve_deletetrans(|resource conn, int identifier)
  3337. [mcve_deleteusersetup | Deallocate data associated with usersetup structure, returns void]
  3338. mcve_deleteusersetup(|resource usersetup)
  3339. [mcve_deluser | Delete an MCVE user account, returns int]
  3340. mcve_deluser(|resource conn, string admin_password, string username)
  3341. [mcve_destroyconn | Destroy the connection and MCVE_CONN structure, returns void]
  3342. mcve_destroyconn(|resource conn)
  3343. [mcve_destroyengine | Free memory associated with IP/SSL connectivity, returns void]
  3344. mcve_destroyengine()|
  3345. [mcve_disableuser | Disable an active MCVE user account, returns int]
  3346. mcve_disableuser(|resource conn, string admin_password, string username)
  3347. [mcve_edituser | Edit MCVE user using usersetup structure, returns int]
  3348. mcve_edituser(|resource conn, string admin_password, int usersetup)
  3349. [mcve_enableuser | Enable an inactive MCVE user account, returns int]
  3350. mcve_enableuser(|resource conn, string admin_password, string username)
  3351. [mcve_force | Send a FORCE to MCVE. (typically, a phone-authorization), returns int]
  3352. mcve_force(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum)
  3353. [mcve_getcell | Get a specific cell from a comma delimited response by column name, returns string]
  3354. mcve_getcell(|resource conn, int identifier, string column, int row)
  3355. [mcve_getcellbynum | Get a specific cell from a comma delimited response by column number, returns string]
  3356. mcve_getcellbynum(|resource conn, int identifier, int column, int row)
  3357. [mcve_getcommadelimited | Get the RAW comma delimited data returned from MCVE, returns string]
  3358. mcve_getcommadelimited(|resource conn, int identifier)
  3359. [mcve_getheader | Get the name of the column in a comma-delimited response, returns string]
  3360. mcve_getheader(|resource conn, int identifier, int column_num)
  3361. [mcve_getuserarg | Grab a value from usersetup structure, returns string]
  3362. mcve_getuserarg(|resource usersetup, int argtype)
  3363. [mcve_getuserparam | Get a user response parameter, returns string]
  3364. mcve_getuserparam(|resource conn, long identifier, int key)
  3365. [mcve_gft | Audit MCVE for Failed transactions, returns int]
  3366. mcve_gft(|resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3367. [mcve_gl | Audit MCVE for settled transactions, returns int]
  3368. mcve_gl(|int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3369. [mcve_gut | Audit MCVE for Unsettled Transactions, returns int]
  3370. mcve_gut(|resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)
  3371. [mcve_initconn | Create and initialize an MCVE_CONN structure, returns resource]
  3372. mcve_initconn()|
  3373. [mcve_initengine | Ready the client for IP/SSL Communication, returns int]
  3374. mcve_initengine(|string location)
  3375. [mcve_initusersetup | Initialize structure to store user data, returns resource]
  3376. mcve_initusersetup()|
  3377. [mcve_iscommadelimited | Checks to see if response is comma delimited, returns int]
  3378. mcve_iscommadelimited(|resource conn, int identifier)
  3379. [mcve_liststats | List statistics for all users on MCVE system, returns int]
  3380. mcve_liststats(|resource conn, string admin_password)
  3381. [mcve_listusers | List all users on MCVE system, returns int]
  3382. mcve_listusers(|resource conn, string admin_password)
  3383. [mcve_maxconntimeout | The maximum amount of time the API will attempt a connection to MCVE, returns bool]
  3384. mcve_maxconntimeout(|resource conn, int secs)
  3385. [mcve_monitor | Perform communication with MCVE (send/receive data) Non-blocking, returns int]
  3386. mcve_monitor(|resource conn)
  3387. [mcve_numcolumns | Number of columns returned in a comma delimited response, returns int]
  3388. mcve_numcolumns(|resource conn, int identifier)
  3389. [mcve_numrows | Number of rows returned in a comma delimited response, returns int]
  3390. mcve_numrows(|resource conn, int identifier)
  3391. [mcve_override | Send an OVERRIDE to MCVE, returns int]
  3392. mcve_override(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3393. [mcve_parsecommadelimited | Parse the comma delimited response so mcve_getcell, etc will work, returns int]
  3394. mcve_parsecommadelimited(|resource conn, int identifier)
  3395. [mcve_ping | Send a ping request to MCVE, returns int]
  3396. mcve_ping(|resource conn)
  3397. [mcve_preauth | Send a PREAUTHORIZATION to MCVE, returns int]
  3398. mcve_preauth(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3399. [mcve_preauthcompletion | Complete a PREAUTHORIZATION... Ready it for settlement, returns int]
  3400. mcve_preauthcompletion(|resource conn, string username, string password, float finalamount, int sid, int ptrannum)
  3401. [mcve_qc | Audit MCVE for a list of transactions in the outgoing queue, returns int]
  3402. mcve_qc(|resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum)
  3403. [mcve_responseparam | Get a custom response parameter, returns string]
  3404. mcve_responseparam(|resource conn, long identifier, string key)
  3405. [mcve_return | Issue a RETURN or CREDIT to MCVE, returns int]
  3406. mcve_return(|int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum)
  3407. [mcve_returncode | Grab the exact return code from the transaction, returns int]
  3408. mcve_returncode(|resource conn, int identifier)
  3409. [mcve_returnstatus | Check to see if the transaction was successful, returns int]
  3410. mcve_returnstatus(|resource conn, int identifier)
  3411. [mcve_sale | Send a SALE to MCVE, returns int]
  3412. mcve_sale(|resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)
  3413. [mcve_setblocking | Set blocking/non-blocking mode for connection, returns int]
  3414. mcve_setblocking(|resource conn, int tf)
  3415. [mcve_setdropfile | Set the connection method to Drop-File, returns int]
  3416. mcve_setdropfile(|resource conn, string directory)
  3417. [mcve_setip | Set the connection method to IP, returns int]
  3418. mcve_setip(|resource conn, string host, int port)
  3419. [mcve_setssl_files | Set certificate key files and certificates if server requires client certificate verification, returns int]
  3420. mcve_setssl_files(|string sslkeyfile, string sslcertfile)
  3421. [mcve_setssl | Set the connection method to SSL, returns int]
  3422. mcve_setssl(|resource conn, string host, int port)
  3423. [mcve_settimeout | Set maximum transaction time (per trans), returns int]
  3424. mcve_settimeout(|resource conn, int seconds)
  3425. [mcve_settle | Issue a settlement command to do a batch deposit, returns int]
  3426. mcve_settle(|resource conn, string username, string password, string batch)
  3427. [mcve_text_avs | Get a textual representation of the return_avs, returns string]
  3428. mcve_text_avs(|string code)
  3429. [mcve_text_code | Get a textual representation of the return_code, returns string]
  3430. mcve_text_code(|string code)
  3431. [mcve_text_cv | Get a textual representation of the return_cv, returns string]
  3432. mcve_text_cv(|int code)
  3433. [mcve_transactionauth | Get the authorization number returned for the transaction (alpha-numeric), returns string]
  3434. mcve_transactionauth(|resource conn, int identifier)
  3435. [mcve_transactionavs | Get the Address Verification return status, returns int]
  3436. mcve_transactionavs(|resource conn, int identifier)
  3437. [mcve_transactionbatch | Get the batch number associated with the transaction, returns int]
  3438. mcve_transactionbatch(|resource conn, int identifier)
  3439. [mcve_transactioncv | Get the CVC2/CVV2/CID return status, returns int]
  3440. mcve_transactioncv(|resource conn, int identifier)
  3441. [mcve_transactionid | Get the unique system id for the transaction, returns int]
  3442. mcve_transactionid(|resource conn, int identifier)
  3443. [mcve_transactionitem | Get the ITEM number in the associated batch for this transaction, returns int]
  3444. mcve_transactionitem(|resource conn, int identifier)
  3445. [mcve_transactionssent | Check to see if outgoing buffer is clear, returns int]
  3446. mcve_transactionssent(|resource conn)
  3447. [mcve_transactiontext | Get verbiage (text) return from MCVE or processing institution, returns string]
  3448. mcve_transactiontext(|resource conn, int identifier)
  3449. [mcve_transinqueue | Number of transactions in client-queue, returns int]
  3450. mcve_transinqueue(|resource conn)
  3451. [mcve_transnew | Start a new transaction, returns int]
  3452. mcve_transnew(|resource conn)
  3453. [mcve_transparam | Add a parameter to a transaction, returns int]
  3454. mcve_transparam(|resource conn, long identifier, int key)
  3455. [mcve_transsend | Finalize and send the transaction, returns int]
  3456. mcve_transsend(|resource conn, long identifier)
  3457. [mcve_ub | Get a list of all Unsettled batches, returns int]
  3458. mcve_ub(|resource conn, string username, string password)
  3459. [mcve_uwait | Wait x microsecs, returns int]
  3460. mcve_uwait(|long microsecs)
  3461. [mcve_verifyconnection | Set whether or not to PING upon connect to verify connection, returns bool]
  3462. mcve_verifyconnection(|resource conn, int tf)
  3463. [mcve_verifysslcert | Set whether or not to verify the server ssl certificate, returns bool]
  3464. mcve_verifysslcert(|resource conn, int tf)
  3465. [mcve_void | VOID a transaction in the settlement queue, returns int]
  3466. mcve_void(|resource conn, string username, string password, int sid, int ptrannum)
  3467. ; -----------------------------------------------------------------------------
  3468. ; mhash - Mhash Functions
  3469. ; -----------------------------------------------------------------------------
  3470. [mhash_count | Get the highest available hash id, returns int]
  3471. mhash_count()|
  3472. [mhash_get_block_size | Get the block size of the specified hash, returns int]
  3473. mhash_get_block_size(|int hash)
  3474. [mhash_get_hash_name | Get the name of the specified hash, returns string]
  3475. mhash_get_hash_name(|int hash)
  3476. [mhash_keygen_s2k | Generates a key, returns string]
  3477. mhash_keygen_s2k(|int hash, string password, string salt, int bytes)
  3478. [mhash | Compute hash, returns string]
  3479. mhash(|int hash, string data, [string key])
  3480. ; -----------------------------------------------------------------------------
  3481. ; Mimetype - Mimetype Functions
  3482. ; -----------------------------------------------------------------------------
  3483. [mime_content_type | Detect MIME Content-type for a file, returns string]
  3484. mime_content_type(|string filename)
  3485. ; -----------------------------------------------------------------------------
  3486. ; MS SQL Server - Microsoft SQL Server functions
  3487. ; -----------------------------------------------------------------------------
  3488. [mssql_bind | Adds a parameter to a stored procedure or a remote stored procedure, returns bool]
  3489. mssql_bind(|resource stmt, string param_name, mixed var, int type, [int is_output], [int is_null], [int maxlen])
  3490. [mssql_close | Close MS SQL Server connection, returns bool]
  3491. mssql_close(|[resource link_identifier])
  3492. [mssql_connect | Open MS SQL server connection, returns int]
  3493. mssql_connect(|[string servername], [string username], [string password])
  3494. [mssql_data_seek | Moves internal row pointer, returns bool]
  3495. mssql_data_seek(|resource result_identifier, int row_number)
  3496. [mssql_execute | Executes a stored procedure on a MS SQL server database, returns mixed]
  3497. mssql_execute(|resource stmt, [bool skip_results])
  3498. [mssql_fetch_array | Fetch a result row as an associative array, a numeric array, or both, returns array]
  3499. mssql_fetch_array(|resource result, [int result_type])
  3500. [mssql_fetch_assoc | Returns an associative array of the current row in the result set specified by result_id, returns array]
  3501. mssql_fetch_assoc(|resource result_id)
  3502. [mssql_fetch_batch | Returns the next batch of records, returns int]
  3503. mssql_fetch_batch(|resource result_index)
  3504. [mssql_fetch_field | Get field information, returns object]
  3505. mssql_fetch_field(|resource result, [int field_offset])
  3506. [mssql_fetch_object | Fetch row as object, returns object]
  3507. mssql_fetch_object(|resource result)
  3508. [mssql_fetch_row | Get row as enumerated array, returns array]
  3509. mssql_fetch_row(|resource result)
  3510. [mssql_field_length | Get the length of a field, returns int]
  3511. mssql_field_length(|resource result, [int offset])
  3512. [mssql_field_name | Get the name of a field, returns string]
  3513. mssql_field_name(|resource result, [int offset])
  3514. [mssql_field_seek | Seeks to the specified field offset, returns bool]
  3515. mssql_field_seek(|resource result, int field_offset)
  3516. [mssql_field_type | Gets the type of a field, returns string]
  3517. mssql_field_type(|resource result, [int offset])
  3518. [mssql_free_result | Free result memory, returns bool]
  3519. mssql_free_result(|resource result)
  3520. [mssql_free_statement | Free statement memory, returns bool]
  3521. mssql_free_statement(|resource statement)
  3522. [mssql_get_last_message | Returns the last message from the server, returns string]
  3523. mssql_get_last_message()|
  3524. [mssql_guid_string | Converts a 16 byte binary GUID to a string, returns string]
  3525. mssql_guid_string(|string binary, [int short_format])
  3526. [mssql_init | Initializes a stored procedure or a remote stored procedure, returns int]
  3527. mssql_init(|string sp_name, [resource conn_id])
  3528. [mssql_min_error_severity | Sets the lower error severity, returns void]
  3529. mssql_min_error_severity(|int severity)
  3530. [mssql_min_message_severity | Sets the lower message severity, returns void]
  3531. mssql_min_message_severity(|int severity)
  3532. [mssql_next_result | Move the internal result pointer to the next result, returns bool]
  3533. mssql_next_result(|resource result_id)
  3534. [mssql_num_fields | Gets the number of fields in result, returns int]
  3535. mssql_num_fields(|resource result)
  3536. [mssql_num_rows | Gets the number of rows in result, returns int]
  3537. mssql_num_rows(|resource result)
  3538. [mssql_pconnect | Open persistent MS SQL connection, returns int]
  3539. mssql_pconnect(|[string servername], [string username], [string password])
  3540. [mssql_query | Send MS SQL query, returns resource]
  3541. mssql_query(|string query, [resource link_identifier], [int batch_size])
  3542. [mssql_result | Get result data, returns string]
  3543. mssql_result(|resource result, int row, mixed field)
  3544. [mssql_rows_affected | Returns the number of records affected by the query, returns int]
  3545. mssql_rows_affected(|resource conn_id)
  3546. [mssql_select_db | Select MS SQL database, returns bool]
  3547. mssql_select_db(|string database_name, [resource link_identifier])
  3548. ; -----------------------------------------------------------------------------
  3549. ; Ming (flash) - Ming functions for Flash
  3550. ; -----------------------------------------------------------------------------
  3551. [ming_setcubicthreshold | Set cubic threshold (?), returns void]
  3552. ming_setcubicthreshold(|int threshold)
  3553. [ming_setscale | Set scale (?), returns void]
  3554. ming_setscale(|int scale)
  3555. [ming_useswfversion | Use SWF version (?), returns void]
  3556. ming_useswfversion(|int version)
  3557. [SWFAction | Creates a new Action., returns new]
  3558. swfaction(|string script)
  3559. [SWFBitmap->getHeight | Returns the bitmap's height., returns int]
  3560. swfbitmap->getheight()|
  3561. [SWFBitmap->getWidth | Returns the bitmap's width., returns int]
  3562. swfbitmap->getwidth()|
  3563. [SWFBitmap | Loads Bitmap object, returns new]
  3564. swfbitmap(|string filename, [int alphafilename])
  3565. [swfbutton_keypress | Returns the action flag for keyPress(char), returns int]
  3566. swfbutton_keypress(|string str)
  3567. [SWFbutton->addAction | Adds an action, returns void]
  3568. swfbutton->addaction(|resource action, int flags)
  3569. [SWFbutton->addShape | Adds a shape to a button, returns void]
  3570. swfbutton->addshape(|resource shape, int flags)
  3571. [SWFbutton->setAction | Sets the action, returns void]
  3572. swfbutton->setaction(|resource action)
  3573. [SWFbutton->setdown | Alias for addShape(shape, SWFBUTTON_DOWN)), returns void]
  3574. swfbutton->setdown(|resource shape)
  3575. [SWFbutton->setHit | Alias for addShape(shape, SWFBUTTON_HIT), returns void]
  3576. swfbutton->sethit(|resource shape)
  3577. [SWFbutton->setOver | Alias for addShape(shape, SWFBUTTON_OVER), returns void]
  3578. swfbutton->setover(|resource shape)
  3579. [SWFbutton->setUp | Alias for addShape(shape, SWFBUTTON_UP), returns void]
  3580. swfbutton->setup(|resource shape)
  3581. [SWFbutton | Creates a new Button., returns new]
  3582. swfbutton()|
  3583. [SWFDisplayItem->addColor | Adds the given color to this item's color transform., returns void]
  3584. swfdisplayitem->addcolor(|[int red], [int green], [int blue], [int a])
  3585. [SWFDisplayItem->move | Moves object in relative coordinates., returns void]
  3586. swfdisplayitem->move(|int dx, int dy)
  3587. [SWFDisplayItem->moveTo | Moves object in global coordinates., returns void]
  3588. swfdisplayitem->moveto(|int x, int y)
  3589. [SWFDisplayItem->multColor | Multiplies the item's color transform., returns void]
  3590. swfdisplayitem->multcolor(|[int red], [int green], [int blue], [int a])
  3591. [SWFDisplayItem->remove | Removes the object from the movie, returns void]
  3592. swfdisplayitem->remove()|
  3593. [SWFDisplayItem->Rotate | Rotates in relative coordinates., returns void]
  3594. swfdisplayitem->rotate(|float ddegrees)
  3595. [SWFDisplayItem->rotateTo | Rotates the object in global coordinates., returns void]
  3596. swfdisplayitem->rotateto(|float degrees)
  3597. [SWFDisplayItem->scale | Scales the object in relative coordinates., returns void]
  3598. swfdisplayitem->scale(|int dx, int dy)
  3599. [SWFDisplayItem->scaleTo | Scales the object in global coordinates., returns void]
  3600. swfdisplayitem->scaleto(|int x, int y)
  3601. [SWFDisplayItem->setDepth | Sets z-order, returns void]
  3602. swfdisplayitem->setdepth(|float depth)
  3603. [SWFDisplayItem->setName | Sets the object's name, returns void]
  3604. swfdisplayitem->setname(|string name)
  3605. [SWFDisplayItem->setRatio | Sets the object's ratio., returns void]
  3606. swfdisplayitem->setratio(|float ratio)
  3607. [SWFDisplayItem->skewX | Sets the X-skew., returns void]
  3608. swfdisplayitem->skewx(|float ddegrees)
  3609. [SWFDisplayItem->skewXTo | Sets the X-skew., returns void]
  3610. swfdisplayitem->skewxto(|float degrees)
  3611. [SWFDisplayItem->skewY | Sets the Y-skew., returns void]
  3612. swfdisplayitem->skewy(|float ddegrees)
  3613. [SWFDisplayItem->skewYTo | Sets the Y-skew., returns void]
  3614. swfdisplayitem->skewyto(|float degrees)
  3615. [SWFDisplayItem | Creates a new displayitem object., returns new]
  3616. swfdisplayitem()|
  3617. [SWFFill->moveTo | Moves fill origin, returns void]
  3618. swffill->moveto(|int x, int y)
  3619. [SWFFill->rotateTo | Sets fill's rotation, returns void]
  3620. swffill->rotateto(|float degrees)
  3621. [SWFFill->scaleTo | Sets fill's scale, returns void]
  3622. swffill->scaleto(|int x, int y)
  3623. [SWFFill->skewXTo | Sets fill x-skew, returns void]
  3624. swffill->skewxto(|float x)
  3625. [SWFFill->skewYTo | Sets fill y-skew, returns void]
  3626. swffill->skewyto(|float y)
  3627. [SWFFill | Loads SWFFill object, returns new]
  3628. SWFFill()|
  3629. [swffont->getwidth | Returns the string's width, returns int]
  3630. swffont->getwidth(|string string)
  3631. [SWFFont | Loads a font definition, returns new]
  3632. swffont(|string filename)
  3633. [SWFGradient->addEntry | Adds an entry to the gradient list., returns void]
  3634. swfgradient->addentry(|float ratio, int red, int green, int blue, [int a])
  3635. [SWFGradient | Creates a gradient object, returns new]
  3636. swfgradient()|
  3637. [SWFMorph->getshape1 | Gets a handle to the starting shape, returns mixed]
  3638. swfmorph->getshape1()|
  3639. [SWFMorph->getshape2 | Gets a handle to the ending shape, returns mixed]
  3640. swfmorph->getshape2()|
  3641. [SWFMorph | Creates a new SWFMorph object., returns new]
  3642. swfmorph()|
  3643. [SWFMovie->add | Adds any type of data to a movie., returns void]
  3644. swfmovie->add(|resource instance)
  3645. [SWFMovie->nextframe | Moves to the next frame of the animation., returns void]
  3646. swfmovie->nextframe()|
  3647. [SWFMovie->output | Dumps your lovingly prepared movie out., returns void]
  3648. swfmovie->output()|
  3649. [swfmovie->remove | Removes the object instance from the display list., returns void]
  3650. swfmovie->remove(|resource instance)
  3651. [SWFMovie->save | Saves your movie in a file., returns void]
  3652. swfmovie->save(|string filename)
  3653. [SWFMovie->setbackground | Sets the background color., returns void]
  3654. swfmovie->setbackground(|int red, int green, int blue)
  3655. [SWFMovie->setdimension | Sets the movie's width and height., returns void]
  3656. swfmovie->setdimension(|int width, int height)
  3657. [SWFMovie->setframes | Sets the total number of frames in the animation., returns void]
  3658. swfmovie->setframes(|string numberofframes)
  3659. [SWFMovie->setrate | Sets the animation's frame rate., returns void]
  3660. swfmovie->setrate(|int rate)
  3661. [SWFMovie->streammp3 | Streams a MP3 file., returns void]
  3662. swfmovie->streammp3(|string mp3FileName)
  3663. [SWFMovie | Creates a new movie object, representing an SWF version 4 movie., returns new]
  3664. swfmovie()|
  3665. [SWFShape->addFill | Adds a solid fill to the shape., returns void]
  3666. swfshape->addfill(|int red, int green, int blue, [int a])
  3667. [SWFShape->drawCurve | Draws a curve (relative)., returns void]
  3668. swfshape->drawcurve(|int controldx, int controldy, int anchordx, int anchordy)
  3669. [SWFShape->drawCurveTo | Draws a curve., returns void]
  3670. swfshape->drawcurveto(|int controlx, int controly, int anchorx, int anchory)
  3671. [SWFShape->drawLine | Draws a line (relative)., returns void]
  3672. swfshape->drawline(|int dx, int dy)
  3673. [SWFShape->drawLineTo | Draws a line., returns void]
  3674. swfshape->drawlineto(|int x, int y)
  3675. [SWFShape->movePen | Moves the shape's pen (relative)., returns void]
  3676. swfshape->movepen(|int dx, int dy)
  3677. [SWFShape->movePenTo | Moves the shape's pen., returns void]
  3678. swfshape->movepento(|int x, int y)
  3679. [SWFShape->setLeftFill | Sets left rasterizing color., returns void]
  3680. swfshape->setleftfill(|swfgradient fill)
  3681. [SWFShape->setLine | Sets the shape's line style., returns void]
  3682. swfshape->setline(|int width, [int red], [int green], [int blue], [int a])
  3683. [SWFShape->setRightFill | Sets right rasterizing color., returns void]
  3684. swfshape->setrightfill(|swfgradient fill)
  3685. [SWFShape | Creates a new shape object., returns new]
  3686. swfshape()|
  3687. [swfsprite->add | Adds an object to a sprite, returns void]
  3688. swfsprite->add(|resource object)
  3689. [SWFSprite->nextframe | Moves to the next frame of the animation., returns void]
  3690. swfsprite->nextframe()|
  3691. [SWFSprite->remove | Removes an object to a sprite, returns void]
  3692. swfsprite->remove(|resource object)
  3693. [SWFSprite->setframes | Sets the total number of frames in the animation., returns void]
  3694. swfsprite->setframes(|int numberofframes)
  3695. [SWFSprite | Creates a movie clip (a sprite), returns new]
  3696. swfsprite()|
  3697. [SWFText->addString | Draws a string, returns void]
  3698. swftext->addstring(|string string)
  3699. [SWFText->getWidth | Computes string's width, returns void]
  3700. swftext->getwidth(|string string)
  3701. [SWFText->moveTo | Moves the pen, returns void]
  3702. swftext->moveto(|int x, int y)
  3703. [SWFText->setColor | Sets the current font color, returns void]
  3704. swftext->setcolor(|int red, int green, int blue, [int a])
  3705. [SWFText->setFont | Sets the current font, returns void]
  3706. swftext->setfont(|string font)
  3707. [SWFText->setHeight | Sets the current font height, returns void]
  3708. swftext->setheight(|int height)
  3709. [SWFText->setSpacing | Sets the current font spacing, returns void]
  3710. swftext->setspacing(|float spacing)
  3711. [SWFText | Creates a new SWFText object., returns new]
  3712. swftext()|
  3713. [SWFTextField->addstring | Concatenates the given string to the text field, returns void]
  3714. swftextfield->addstring(|string string)
  3715. [SWFTextField->align | Sets the text field alignment, returns void]
  3716. swftextfield->align(|int alignement)
  3717. [SWFTextField->setbounds | Sets the text field width and height, returns void]
  3718. swftextfield->setbounds(|int width, int height)
  3719. [SWFTextField->setcolor | Sets the color of the text field., returns void]
  3720. swftextfield->setcolor(|int red, int green, int blue, [int a])
  3721. [SWFTextField->setFont | Sets the text field font, returns void]
  3722. swftextfield->setfont(|string font)
  3723. [SWFTextField->setHeight | Sets the font height of this text field font., returns void]
  3724. swftextfield->setheight(|int height)
  3725. [SWFTextField->setindentation | Sets the indentation of the first line., returns void]
  3726. swftextfield->setindentation(|int width)
  3727. [SWFTextField->setLeftMargin | Sets the left margin width of the text field., returns void]
  3728. swftextfield->setleftmargin(|int width)
  3729. [SWFTextField->setLineSpacing | Sets the line spacing of the text field., returns void]
  3730. swftextfield->setlinespacing(|int height)
  3731. [SWFTextField->setMargins | Sets the margins width of the text field., returns void]
  3732. swftextfield->setmargins(|int left, int right)
  3733. [SWFTextField->setname | Sets the variable name, returns void]
  3734. swftextfield->setname(|string name)
  3735. [SWFTextField->setrightMargin | Sets the right margin width of the text field., returns void]
  3736. swftextfield->setrightmargin(|int width)
  3737. [SWFTextField | Creates a text field object, returns new]
  3738. swftextfield(|[int flags])
  3739. ; -----------------------------------------------------------------------------
  3740. ; Misc. - Miscellaneous functions
  3741. ; -----------------------------------------------------------------------------
  3742. [connection_aborted | Returns TRUE if client disconnected, returns int]
  3743. connection_aborted()|
  3744. [connection_status | Returns connection status bitfield, returns int]
  3745. connection_status()|
  3746. [connection_timeout | Return TRUE if script timed out, returns bool]
  3747. connection_timeout()|
  3748. [constant | Returns the value of a constant, returns mixed]
  3749. constant(|string name)
  3750. [define | Defines a named constant., returns bool]
  3751. define(|string name, mixed value, [bool case_insensitive])
  3752. [defined | Checks whether a given named constant exists, returns bool]
  3753. defined(|string name)
  3754. [die | Alias of exit]
  3755. die(|)
  3756. [eval | Evaluate a string as PHP code, returns mixed]
  3757. eval(|string code_str)
  3758. [exit | Output a message and terminate the current script, returns void]
  3759. exit(|[string status])
  3760. [get_browser | Tells what the user's browser is capable of, returns object]
  3761. get_browser(|[string user_agent])
  3762. [highlight_file | Syntax highlighting of a file, returns mixed]
  3763. highlight_file(|string filename, [bool return])
  3764. [highlight_string | Syntax highlighting of a string, returns mixed]
  3765. highlight_string(|string str, [bool return])
  3766. [ignore_user_abort | Set whether a client disconnect should abort script execution, returns int]
  3767. ignore_user_abort(|[bool setting])
  3768. [pack | Pack data into binary string., returns string]
  3769. pack(|string format, [mixed args])
  3770. [show_source | Alias of highlight_file]
  3771. show_source(|)
  3772. [sleep | Delay execution, returns void]
  3773. sleep(|int seconds)
  3774. [uniqid | Generate a unique ID, returns string]
  3775. uniqid(|string prefix, [bool lcg])
  3776. [unpack | Unpack data from binary string, returns array]
  3777. unpack(|string format, string data)
  3778. [usleep | Delay execution in microseconds, returns void]
  3779. usleep(|int micro_seconds)
  3780. ; -----------------------------------------------------------------------------
  3781. ; mnoGoSearch - mnoGoSearch Functions
  3782. ; -----------------------------------------------------------------------------
  3783. [udm_add_search_limit | Add various search limits, returns bool]
  3784. udm_add_search_limit(|resource agent, int var, string val)
  3785. [udm_alloc_agent | Allocate mnoGoSearch session, returns resource]
  3786. udm_alloc_agent(|string dbaddr, [string dbmode])
  3787. [udm_api_version | Get mnoGoSearch API version., returns int]
  3788. udm_api_version()|
  3789. [udm_cat_list | Get all the categories on the same level with the current one., returns array]
  3790. udm_cat_list(|resource agent, string category)
  3791. [udm_cat_path | Get the path to the current category., returns array]
  3792. udm_cat_path(|resource agent, string category)
  3793. [udm_check_charset | Check if the given charset is known to mnogosearch, returns bool]
  3794. udm_check_charset(|resource agent, string charset)
  3795. [udm_check_stored | Check connection to stored, returns int]
  3796. udm_check_stored(|resource agent, int link, string doc_id)
  3797. [udm_clear_search_limits | Clear all mnoGoSearch search restrictions, returns bool]
  3798. udm_clear_search_limits(|resource agent)
  3799. [udm_close_stored | Close connection to stored, returns int]
  3800. udm_close_stored(|resource agent, int link)
  3801. [udm_crc32 | Return CRC32 checksum of gived string, returns int]
  3802. udm_crc32(|resource agent, string str)
  3803. [udm_errno | Get mnoGoSearch error number, returns int]
  3804. udm_errno(|resource agent)
  3805. [udm_error | Get mnoGoSearch error message, returns string]
  3806. udm_error(|resource agent)
  3807. [udm_find | Perform search, returns resource]
  3808. udm_find(|resource agent, string query)
  3809. [udm_free_agent | Free mnoGoSearch session, returns int]
  3810. udm_free_agent(|resource agent)
  3811. [udm_free_ispell_data | Free memory allocated for ispell data, returns bool]
  3812. udm_free_ispell_data(|int agent)
  3813. [udm_free_res | Free mnoGoSearch result, returns bool]
  3814. udm_free_res(|resource res)
  3815. [udm_get_doc_count | Get total number of documents in database., returns int]
  3816. udm_get_doc_count(|resource agent)
  3817. [udm_get_res_field | Fetch mnoGoSearch result field, returns string]
  3818. udm_get_res_field(|resource res, int row, int field)
  3819. [udm_get_res_param | Get mnoGoSearch result parameters, returns string]
  3820. udm_get_res_param(|resource res, int param)
  3821. [udm_load_ispell_data | Load ispell data, returns bool]
  3822. udm_load_ispell_data(|resource agent, int var, string val1, string val2, int flag)
  3823. [udm_open_stored | Open connection to stored, returns int]
  3824. udm_open_stored(|resource agent, string storedaddr)
  3825. [udm_set_agent_param | Set mnoGoSearch agent session parameters, returns bool]
  3826. udm_set_agent_param(|resource agent, int var, string val)
  3827. ; -----------------------------------------------------------------------------
  3828. ; mSQL - mSQL functions
  3829. ; -----------------------------------------------------------------------------
  3830. [msql_affected_rows | Returns number of affected rows, returns int]
  3831. msql_affected_rows(|int query_identifier)
  3832. [msql_close | Close mSQL connection, returns int]
  3833. msql_close(|int link_identifier)
  3834. [msql_connect | Open mSQL connection, returns int]
  3835. msql_connect(|[string hostname], [string server], [string username], [string password])
  3836. [msql_create_db | Create mSQL database, returns int]
  3837. msql_create_db(|string database_name, [int link_identifier])
  3838. [msql_createdb | Create mSQL database, returns int]
  3839. msql_createdb(|string database_name, [int link_identifier])
  3840. [msql_data_seek | Move internal row pointer, returns int]
  3841. msql_data_seek(|int query_identifier, int row_number)
  3842. [msql_dbname | Get current mSQL database name, returns string]
  3843. msql_dbname(|int query_identifier, int i)
  3844. [msql_drop_db | Drop (delete) mSQL database, returns int]
  3845. msql_drop_db(|string database_name, int link_identifier)
  3846. [msql_dropdb | Drop (delete) mSQL database]
  3847. [msql_error | Returns error message of last msql call, returns string]
  3848. msql_error(|[int link_identifier])
  3849. [msql_fetch_array | Fetch row as array, returns int]
  3850. msql_fetch_array(|int query_identifier, [int result_type])
  3851. [msql_fetch_field | Get field information, returns object]
  3852. msql_fetch_field(|int query_identifier, int field_offset)
  3853. [msql_fetch_object | Fetch row as object, returns int]
  3854. msql_fetch_object(|int query_identifier, [int result_type])
  3855. [msql_fetch_row | Get row as enumerated array, returns array]
  3856. msql_fetch_row(|int query_identifier)
  3857. [msql_field_seek | Set field offset, returns int]
  3858. msql_field_seek(|int query_identifier, int field_offset)
  3859. [msql_fieldflags | Get field flags, returns string]
  3860. msql_fieldflags(|int query_identifier, int i)
  3861. [msql_fieldlen | Get field length, returns int]
  3862. msql_fieldlen(|int query_identifier, int i)
  3863. [msql_fieldname | Get field name, returns string]
  3864. msql_fieldname(|int query_identifier, int field)
  3865. [msql_fieldtable | Get table name for field, returns int]
  3866. msql_fieldtable(|int query_identifier, int field)
  3867. [msql_fieldtype | Get field type, returns string]
  3868. msql_fieldtype(|int query_identifier, int i)
  3869. [msql_free_result | Free result memory, returns int]
  3870. msql_free_result(|int query_identifier)
  3871. [msql_freeresult | Free result memory]
  3872. [msql_list_dbs | List mSQL databases on server, returns int]
  3873. msql_list_dbs()|
  3874. [msql_list_fields | List result fields, returns int]
  3875. msql_list_fields(|string database, string tablename)
  3876. [msql_list_tables | List tables in an mSQL database, returns int]
  3877. msql_list_tables(|string database)
  3878. [msql_listdbs | List mSQL databases on server]
  3879. [msql_listfields | List result fields]
  3880. [msql_listtables | List tables in an mSQL database]
  3881. [msql_num_fields | Get number of fields in result, returns int]
  3882. msql_num_fields(|int query_identifier)
  3883. [msql_num_rows | Get number of rows in result, returns int]
  3884. msql_num_rows(|resource query_identifier)
  3885. [msql_numfields | Get number of fields in result, returns int]
  3886. msql_numfields(|int query_identifier)
  3887. [msql_numrows | Get number of rows in result, returns int]
  3888. msql_numrows()|
  3889. [msql_pconnect | Open persistent mSQL connection, returns int]
  3890. msql_pconnect(|[string server], [string username], [string password])
  3891. [msql_query | Send mSQL query, returns int]
  3892. msql_query(|string query, int link_identifier)
  3893. [msql_regcase | Make regular expression for case insensitive match]
  3894. [msql_result | Get result data, returns int]
  3895. msql_result(|int query_identifier, int i, mixed field)
  3896. [msql_select_db | Select mSQL database, returns int]
  3897. msql_select_db(|string database_name, int link_identifier)
  3898. [msql_selectdb | Select mSQL database]
  3899. [msql_tablename | Get table name of field, returns string]
  3900. msql_tablename(|int query_identifier, int field)
  3901. [msql | Send mSQL query, returns int]
  3902. msql(|string database, string query, int link_identifier)
  3903. ; -----------------------------------------------------------------------------
  3904. ; MySQL - MySQL Functions
  3905. ; -----------------------------------------------------------------------------
  3906. [mysql_affected_rows | Get number of affected rows in previous MySQL operation, returns int]
  3907. mysql_affected_rows(|[resource link_identifier])
  3908. [mysql_change_user | Change logged in user of the active connection, returns int]
  3909. mysql_change_user(|string user, string password, [string database], [resource link_identifier])
  3910. [mysql_client_encoding | Returns the name of the character set, returns int]
  3911. mysql_client_encoding(|[resource link_identifier])
  3912. [mysql_close | Close MySQL connection, returns bool]
  3913. mysql_close(|[resource link_identifier])
  3914. [mysql_connect | Open a connection to a MySQL Server, returns resource]
  3915. mysql_connect(|[string server], [string username], [string password], [bool new_link], [int client_flags])
  3916. [mysql_create_db | Create a MySQL database, returns bool]
  3917. mysql_create_db(|string database_name, [resource link_identifier])
  3918. [mysql_data_seek | Move internal result pointer, returns bool]
  3919. mysql_data_seek(|resource result_identifier, int row_number)
  3920. [mysql_db_name | Get result data, returns string]
  3921. mysql_db_name(|resource result, int row, [mixed field])
  3922. [mysql_db_query | Send a MySQL query, returns resource]
  3923. mysql_db_query(|string database, string query, [resource link_identifier])
  3924. [mysql_drop_db | Drop (delete) a MySQL database, returns bool]
  3925. mysql_drop_db(|string database_name, [resource link_identifier])
  3926. [mysql_errno | Returns the numerical value of the error message from previous MySQL operation, returns int]
  3927. mysql_errno(|[resource link_identifier])
  3928. [mysql_error | Returns the text of the error message from previous MySQL operation, returns string]
  3929. mysql_error(|[resource link_identifier])
  3930. [mysql_escape_string | Escapes a string for use in a mysql_query., returns string]
  3931. mysql_escape_string(|string unescaped_string)
  3932. [mysql_fetch_array | Fetch a result row as an associative array, a numeric array, or both., returns array]
  3933. mysql_fetch_array(|resource result, [int result_type])
  3934. [mysql_fetch_assoc | Fetch a result row as an associative array, returns array]
  3935. mysql_fetch_assoc(|resource result)
  3936. [mysql_fetch_field | Get column information from a result and return as an object, returns object]
  3937. mysql_fetch_field(|resource result, [int field_offset])
  3938. [mysql_fetch_lengths | Get the length of each output in a result, returns array]
  3939. mysql_fetch_lengths(|resource result)
  3940. [mysql_fetch_object | Fetch a result row as an object, returns object]
  3941. mysql_fetch_object(|resource result)
  3942. [mysql_fetch_row | Get a result row as an enumerated array, returns array]
  3943. mysql_fetch_row(|resource result)
  3944. [mysql_field_flags | Get the flags associated with the specified field in a result, returns string]
  3945. mysql_field_flags(|resource result, int field_offset)
  3946. [mysql_field_len | Returns the length of the specified field, returns int]
  3947. mysql_field_len(|resource result, int field_offset)
  3948. [mysql_field_name | Get the name of the specified field in a result, returns string]
  3949. mysql_field_name(|resource result, int field_index)
  3950. [mysql_field_seek | Set result pointer to a specified field offset, returns int]
  3951. mysql_field_seek(|resource result, int field_offset)
  3952. [mysql_field_table | Get name of the table the specified field is in, returns string]
  3953. mysql_field_table(|resource result, int field_offset)
  3954. [mysql_field_type | Get the type of the specified field in a result, returns string]
  3955. mysql_field_type(|resource result, int field_offset)
  3956. [mysql_free_result | Free result memory, returns bool]
  3957. mysql_free_result(|resource result)
  3958. [mysql_get_client_info | Get MySQL client info, returns string]
  3959. mysql_get_client_info()|
  3960. [mysql_get_host_info | Get MySQL host info, returns string]
  3961. mysql_get_host_info(|[resource link_identifier])
  3962. [mysql_get_proto_info | Get MySQL protocol info, returns int]
  3963. mysql_get_proto_info(|[resource link_identifier])
  3964. [mysql_get_server_info | Get MySQL server info, returns string]
  3965. mysql_get_server_info(|[resource link_identifier])
  3966. [mysql_info | Get information about the most recent query, returns string]
  3967. mysql_info(|[resource link_identifier])
  3968. [mysql_insert_id | Get the ID generated from the previous INSERT operation, returns int]
  3969. mysql_insert_id(|[resource link_identifier])
  3970. [mysql_list_dbs | List databases available on a MySQL server, returns resource]
  3971. mysql_list_dbs(|[resource link_identifier])
  3972. [mysql_list_fields | List MySQL table fields, returns resource]
  3973. mysql_list_fields(|string database_name, string table_name, [resource link_identifier])
  3974. [mysql_list_processes | List MySQL processes, returns resource]
  3975. mysql_list_processes(|[resource link_identifier])
  3976. [mysql_list_tables | List tables in a MySQL database, returns resource]
  3977. mysql_list_tables(|string database, [resource link_identifier])
  3978. [mysql_num_fields | Get number of fields in result, returns int]
  3979. mysql_num_fields(|resource result)
  3980. [mysql_num_rows | Get number of rows in result, returns int]
  3981. mysql_num_rows(|resource result)
  3982. [mysql_pconnect | Open a persistent connection to a MySQL server, returns resource]
  3983. mysql_pconnect(|[string server], [string username], [string password], [int client_flags])
  3984. [mysql_ping | Ping a server connection or reconnect if there is no connection, returns bool]
  3985. mysql_ping(|[resource link_identifier])
  3986. [mysql_query | Send a MySQL query, returns resource]
  3987. mysql_query(|string query, [resource link_identifier])
  3988. [mysql_real_escape_string | Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection., returns string]
  3989. mysql_real_escape_string(|string unescaped_string, [resource link_identifier])
  3990. [mysql_result | Get result data, returns mixed]
  3991. mysql_result(|resource result, int row, [mixed field])
  3992. [mysql_select_db | Select a MySQL database, returns bool]
  3993. mysql_select_db(|string database_name, [resource link_identifier])
  3994. [mysql_stat | Get current system status, returns string]
  3995. mysql_stat(|[resource link_identifier])
  3996. [mysql_tablename | Get table name of field, returns string]
  3997. mysql_tablename(|resource result, int i)
  3998. [mysql_thread_id | Return the current thread ID, returns int]
  3999. mysql_thread_id(|[resource link_identifier])
  4000. [mysql_unbuffered_query | Send an SQL query to MySQL, without fetching and buffering the result rows, returns resource]
  4001. mysql_unbuffered_query(|string query, [resource link_identifier])
  4002. ; -----------------------------------------------------------------------------
  4003. ; mysqli - Improved MySQL Extension
  4004. ; -----------------------------------------------------------------------------
  4005. [mysqli_affected_rows | Gets the number of affected rows in a previous MySQL operation, returns mixed]
  4006. mysqli_affected_rows(|object link)
  4007. [mysqli_autocommit | Turns on or off auto-commiting database modifications, returns bool]
  4008. mysqli_autocommit(|object link, bool mode)
  4009. [mysqli_bind_param | Binds variables to a prepared statement as parameters, returns bool]
  4010. mysqli_bind_param(|object stmt, array types, mixed var1, [mixed var2, ...])
  4011. [mysqli_bind_result | Binds variables to a prepared statement for result storage, returns bool]
  4012. mysqli_bind_result(|resource stmt, mixed var, int len)
  4013. [mysqli_change_user | Changes the user of the specified database connection, returns bool]
  4014. mysqli_change_user(|resource link, string user, string password, string database)
  4015. [mysqli_character_set_name | Returns the default character set for the database connection, returns string]
  4016. mysqli_character_set_name(|resource link)
  4017. [mysqli_close | Closes a previously opened database connection, returns bool]
  4018. mysqli_close(|resource link)
  4019. [mysqli_commit | Commits the current transaction, returns bool]
  4020. mysqli_commit(|resource link)
  4021. [mysqli_connect | Open a new connection to the MySQL server, returns resource]
  4022. mysqli_connect(|[string hostname], [string username], [string passwd], [string dbname], [int port], [string socket])
  4023. [mysqli_data_seek | Adjusts the result pointer to an arbitary row in the result, returns void]
  4024. mysqli_data_seek(|resource result, int offset)
  4025. [mysqli_debug | Performs debugging operations, returns void]
  4026. mysqli_debug(|string debug)
  4027. [mysqli_disable_reads_from_master | , returns void]
  4028. mysqli_disable_reads_from_master(|resource link)
  4029. [mysqli_disable_rpl_parse | , returns void]
  4030. mysqli_disable_rpl_parse(|resource link)
  4031. [mysqli_dump_debug_info | Dump debugging information into the log, returns bool]
  4032. mysqli_dump_debug_info(|resource link)
  4033. [mysqli_enable_reads_from_master | , returns void]
  4034. mysqli_enable_reads_from_master(|resource link)
  4035. [mysqli_enable_rpl_parse | , returns void]
  4036. mysqli_enable_rpl_parse(|resource link)
  4037. [mysqli_errno | Returns the error code for the most recent function call, returns int]
  4038. mysqli_errno(|resource link)
  4039. [mysqli_error | Returns a string description of the last error, returns string]
  4040. mysqli_error(|resource link)
  4041. [mysqli_execute | Executes a prepared Query, returns int]
  4042. mysqli_execute(|resource stmt)
  4043. [mysqli_fetch_array | Fetch a result row as an associative, a numeric array, or both., returns array]
  4044. mysqli_fetch_array(|resource result, [int resulttype])
  4045. [mysqli_fetch_assoc | Fetch a result row as an associative array, returns array]
  4046. mysqli_fetch_assoc(|resource result)
  4047. [mysqli_fetch_field_direct | Fetch meta-data for a single field, returns int]
  4048. mysqli_fetch_field_direct(|resource result, int offset)
  4049. [mysqli_fetch_field | Returns the next field in the result set, returns object]
  4050. mysqli_fetch_field(|resource result)
  4051. [mysqli_fetch_fields | Returns an array of objects representing the fields in a result set, returns array]
  4052. mysqli_fetch_fields(|resource result)
  4053. [mysqli_fetch_lengths | Returns the lengths of the columns of the current row in the result set, returns array]
  4054. mysqli_fetch_lengths(|resource result)
  4055. [mysqli_fetch_object | Returns the current row of a result set as an object, returns object]
  4056. mysqli_fetch_object(|resource result)
  4057. [mysqli_fetch_row | Get a result row as an enumerated array, returns array]
  4058. mysqli_fetch_row(|resource result)
  4059. [mysqli_fetch | Fetch results from a prepared statement into the bound variables, returns int]
  4060. mysqli_fetch(|resource stmt)
  4061. [mysqli_field_count | Returns the number of columns for the most recent query, returns int]
  4062. mysqli_field_count(|resource link)
  4063. [mysqli_field_seek | Set result pointer to a specified field offset, returns int]
  4064. mysqli_field_seek(|resource link, int fieldnr)
  4065. [mysqli_field_tell | Get current field offset of a result pointer, returns int]
  4066. mysqli_field_tell(|resource result)
  4067. [mysqli_free_result | Frees the memory associated with a result, returns int]
  4068. mysqli_free_result(|resource result)
  4069. [mysqli_get_client_info | Returns the MySQL client version as a string, returns string]
  4070. mysqli_get_client_info(|void )
  4071. [mysqli_get_host_info | Returns a string representing the type of connection used, returns string]
  4072. mysqli_get_host_info(|resource link)
  4073. [mysqli_get_proto_info | Returns the version of the MySQL protocol used, returns int]
  4074. mysqli_get_proto_info(|resource link)
  4075. [mysqli_get_server_info | Returns the version of the MySQL server, returns string]
  4076. mysqli_get_server_info(|resource link)
  4077. [mysqli_get_server_version | Returns the version of the MySQL server as an integer, returns int]
  4078. mysqli_get_server_version(|resource link)
  4079. [mysqli_info | Retrieves information about the most recently executed query, returns string]
  4080. mysqli_info(|resource link)
  4081. [mysqli_init | Initializes MySQLi and returns a resource for use with mysqli_real_connect, returns resource]
  4082. mysqli_init()|
  4083. [mysqli_insert_id | Returns the auto generated id used in the last query, returns mixed]
  4084. mysqli_insert_id(|resource link)
  4085. [mysqli_kill | Asks the server to kill a MySQL thread, returns bool]
  4086. mysqli_kill(|resource link, int processid)
  4087. [mysqli_master_query | Enforce execution of a query on the master in a master/slave setup, returns bool]
  4088. mysqli_master_query(|resource link, string query)
  4089. [mysqli_num_fields | Get the number of fields in a result, returns int]
  4090. mysqli_num_fields(|resource result)
  4091. [mysqli_num_rows | Gets the number of rows in a result, returns int]
  4092. mysqli_num_rows(|resource result)
  4093. [mysqli_options | set options, returns bool]
  4094. mysqli_options(|resource link, int flags, mixed values)
  4095. [mysqli_param_count | Returns the number of parameter for the given statement, returns int]
  4096. mysqli_param_count(|resource stmt)
  4097. [mysqli_ping | Ping a server connection, or reconnect if there is no connection, returns int]
  4098. mysqli_ping(|resource link)
  4099. [mysqli_prepare_result | , returns resource]
  4100. mysqli_prepare_result(|resource stmt)
  4101. [mysqli_prepare | Prepare a SQL statement for execution, returns resource]
  4102. mysqli_prepare(|resource link, string query)
  4103. [mysqli_profiler | , returns bool]
  4104. mysqli_profiler(|int flags, string info, int port)
  4105. [mysqli_query | Performs a query on the database, returns resource]
  4106. mysqli_query(|resource link, string query, [int resultmode])
  4107. [mysqli_read_query_result | , returns bool]
  4108. mysqli_read_query_result(|resource link)
  4109. [mysqli_real_connect | Opens a connection to a mysql server, returns bool]
  4110. mysqli_real_connect(|resource link, [string hostname], [string username], [string passwd], [string dbname], [int port], [string socket])
  4111. [mysqli_real_escape_string | Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection, returns string]
  4112. mysqli_real_escape_string(|resource link, string escapestr)
  4113. [mysqli_real_query | Execute an SQL query, returns bool]
  4114. mysqli_real_query(|resource link, string query)
  4115. [mysqli_reload | , returns bool]
  4116. mysqli_reload(|resource link)
  4117. [mysqli_rollback | , returns bool]
  4118. mysqli_rollback(|resource link)
  4119. [mysqli_rpl_parse_enabled | , returns int]
  4120. mysqli_rpl_parse_enabled(|resource link)
  4121. [mysqli_rpl_probe | , returns bool]
  4122. mysqli_rpl_probe(|resource link)
  4123. [mysqli_rpl_query_type | , returns int]
  4124. mysqli_rpl_query_type(|string query)
  4125. [mysqli_select_db | Selects the default database for database queries, returns bool]
  4126. mysqli_select_db(|resource link, string dbname)
  4127. [mysqli_send_long_data | , returns bool]
  4128. mysqli_send_long_data(|resource stmt, int param_nr, string data)
  4129. [mysqli_send_query | , returns bool]
  4130. mysqli_send_query(|resource link, string query)
  4131. [mysqli_slave_query | Enforces execution of a query on a slave in a master/slave setup, returns bool]
  4132. mysqli_slave_query(|resource link, string query)
  4133. [mysqli_ssl_set | , returns string]
  4134. mysqli_ssl_set(|resource link, [string key], [string cert], [string ca], [string capath], [string cipher])
  4135. [mysqli_stat | Gets the current system status, returns string]
  4136. mysqli_stat(|resource link)
  4137. [mysqli_stmt_affected_rows | , returns mixed]
  4138. mysqli_stmt_affected_rows(|object stmt)
  4139. [mysqli_stmt_close | close statement, returns bool]
  4140. mysqli_stmt_close(|resource stmt)
  4141. [mysqli_stmt_errno | , returns int]
  4142. mysqli_stmt_errno(|resource stmt)
  4143. [mysqli_stmt_error | , returns string]
  4144. mysqli_stmt_error(|resource stmt)
  4145. [mysqli_stmt_store_result | , returns resource]
  4146. mysqli_stmt_store_result(|resource stmt)
  4147. [mysqli_store_result | Transfers a result set from the last query, returns resource]
  4148. mysqli_store_result(|resource link)
  4149. [mysqli_thread_id | Returns the thread ID for the current connection, returns int]
  4150. mysqli_thread_id(|resource link)
  4151. [mysqli_thread_safe | Returns whether thread safety is given or not, returns bool]
  4152. mysqli_thread_safe(|void )
  4153. [mysqli_use_result | Initiate a result set retrieval, returns resource]
  4154. mysqli_use_result(|resource link)
  4155. [mysqli_warning_count | Returns the number of warnings from the last query for the given link, returns resource]
  4156. mysqli_warning_count(|resource link)
  4157. ; -----------------------------------------------------------------------------
  4158. ; Msession - Mohawk Software session handler functions
  4159. ; -----------------------------------------------------------------------------
  4160. [msession_connect | Connect to msession server, returns bool]
  4161. msession_connect(|string host, string port)
  4162. [msession_count | Get session count, returns int]
  4163. msession_count()|
  4164. [msession_create | Create a session, returns bool]
  4165. msession_create(|string session)
  4166. [msession_destroy | Destroy a session, returns bool]
  4167. msession_destroy(|string name)
  4168. [msession_disconnect | Close connection to msession server, returns void]
  4169. msession_disconnect()|
  4170. [msession_find | Find value, returns array]
  4171. msession_find(|string name, string value)
  4172. [msession_get_array | Get array of ... ?, returns array]
  4173. msession_get_array(|string session)
  4174. [msession_get | Get value from session, returns string]
  4175. msession_get(|string session, string name, string value)
  4176. [msession_getdata | Get data ... ?, returns string]
  4177. msession_getdata(|string session)
  4178. [msession_inc | Increment value in session, returns string]
  4179. msession_inc(|string session, string name)
  4180. [msession_list | List ... ?, returns array]
  4181. msession_list()|
  4182. [msession_listvar | List sessions with variable, returns array]
  4183. msession_listvar(|string name)
  4184. [msession_lock | Lock a session, returns int]
  4185. msession_lock(|string name)
  4186. [msession_plugin | Call an escape function within the msession personality plugin, returns string]
  4187. msession_plugin(|string session, string val, [string param])
  4188. [msession_randstr | Get random string, returns string]
  4189. msession_randstr(|int param)
  4190. [msession_set_array | Set array of ..., returns bool]
  4191. msession_set_array(|string session, array tuples)
  4192. [msession_set | Set value in session, returns bool]
  4193. msession_set(|string session, string name, string value)
  4194. [msession_setdata | Set data ... ?, returns bool]
  4195. msession_setdata(|string session, string value)
  4196. [msession_timeout | Set/get session timeout, returns int]
  4197. msession_timeout(|string session, [int param])
  4198. [msession_uniq | Get uniq id, returns string]
  4199. msession_uniq(|int param)
  4200. [msession_unlock | Unlock a session, returns int]
  4201. msession_unlock(|string session, int key)
  4202. ; -----------------------------------------------------------------------------
  4203. ; muscat - muscat functions
  4204. ; -----------------------------------------------------------------------------
  4205. [muscat_close | Shuts down the muscat session and releases any memory back to PHP., returns int]
  4206. muscat_close(|resource muscat_handle)
  4207. [muscat_get | Gets a line back from the core muscat API., returns string]
  4208. muscat_get(|resource muscat_handle)
  4209. [muscat_give | Sends string to the core muscat API, returns int]
  4210. muscat_give(|resource muscat_handle, string string)
  4211. [muscat_setup_net | Creates a new muscat session and returns the handle., returns resource]
  4212. muscat_setup_net(|string muscat_host, int port)
  4213. [muscat_setup | Creates a new muscat session and returns the handle., returns resource]
  4214. muscat_setup(|int size, [string muscat_dir])
  4215. ; -----------------------------------------------------------------------------
  4216. ; Network - Network Functions
  4217. ; -----------------------------------------------------------------------------
  4218. [checkdnsrr | Check DNS records corresponding to a given Internet host name or IP address, returns int]
  4219. checkdnsrr(|string host, [string type])
  4220. [closelog | Close connection to system logger, returns int]
  4221. closelog()|
  4222. [debugger_off | Disable internal PHP debugger (PHP 3), returns int]
  4223. debugger_off()|
  4224. [debugger_on | Enable internal PHP debugger (PHP 3), returns int]
  4225. debugger_on(|string address)
  4226. [define_syslog_variables | Initializes all syslog related constants, returns void]
  4227. define_syslog_variables()|
  4228. [dns_check_record | Synonym for checkdnsrr, returns int]
  4229. dns_check_record(|string host, [string type])
  4230. [dns_get_mx | Synonym for getmxrr, returns int]
  4231. dns_get_mx(|string hostname, array mxhosts, [array &weight])
  4232. [dns_get_record | Fetch DNS Resource Records associated with a hostname, returns array]
  4233. dns_get_record(|string hostname, [int type], [array &authns], array &addtl)
  4234. [fsockopen | Open Internet or Unix domain socket connection, returns int]
  4235. fsockopen(|string target, int port, [int errno], [string errstr], [float timeout])
  4236. [gethostbyaddr | Get the Internet host name corresponding to a given IP address, returns string]
  4237. gethostbyaddr(|string ip_address)
  4238. [gethostbyname | Get the IP address corresponding to a given Internet host name, returns string]
  4239. gethostbyname(|string hostname)
  4240. [gethostbynamel | Get a list of IP addresses corresponding to a given Internet host name, returns array]
  4241. gethostbynamel(|string hostname)
  4242. [getmxrr | Get MX records corresponding to a given Internet host name, returns int]
  4243. getmxrr(|string hostname, array mxhosts, [array weight])
  4244. [getprotobyname | Get protocol number associated with protocol name, returns int]
  4245. getprotobyname(|string name)
  4246. [getprotobynumber | Get protocol name associated with protocol number, returns string]
  4247. getprotobynumber(|int number)
  4248. [getservbyname | Get port number associated with an Internet service and protocol, returns int]
  4249. getservbyname(|string service, string protocol)
  4250. [getservbyport | Get Internet service which corresponds to port and protocol, returns string]
  4251. getservbyport(|int port, string protocol)
  4252. [ip2long | Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address., returns int]
  4253. ip2long(|string ip_address)
  4254. [long2ip | Converts an (IPv4) Internet network address into a string in Internet standard dotted format, returns string]
  4255. long2ip(|int proper_address)
  4256. [openlog | Open connection to system logger, returns int]
  4257. openlog(|string ident, int option, int facility)
  4258. [pfsockopen | Open persistent Internet or Unix domain socket connection, returns int]
  4259. pfsockopen(|string hostname, int port, [int errno], [string errstr], [int timeout])
  4260. [socket_get_status | Alias of stream_get_meta_data.]
  4261. socket_get_status(|)
  4262. [socket_set_blocking | Alias for stream_set_blocking]
  4263. socket_set_blocking(|)
  4264. [socket_set_timeout | Alias for stream_set_timeout]
  4265. socket_set_timeout(|)
  4266. [syslog | Generate a system log message, returns int]
  4267. syslog(|int priority, string message)
  4268. ; -----------------------------------------------------------------------------
  4269. ; Ncurses - Ncurses terminal screen control functions
  4270. ; -----------------------------------------------------------------------------
  4271. [ncurses_addch | Add character at current position and advance cursor, returns int]
  4272. ncurses_addch(|int ch)
  4273. [ncurses_addchnstr | Add attributed string with specified length at current position, returns int]
  4274. ncurses_addchnstr(|string s, int n)
  4275. [ncurses_addchstr | Add attributed string at current position, returns int]
  4276. ncurses_addchstr(|string s)
  4277. [ncurses_addnstr | Add string with specified length at current position, returns int]
  4278. ncurses_addnstr(|string s, int n)
  4279. [ncurses_addstr | Output text at current position, returns int]
  4280. ncurses_addstr(|string text)
  4281. [ncurses_assume_default_colors | Define default colors for color 0, returns int]
  4282. ncurses_assume_default_colors(|int fg, int bg)
  4283. [ncurses_attroff | Turn off the given attributes, returns int]
  4284. ncurses_attroff(|int attributes)
  4285. [ncurses_attron | Turn on the given attributes, returns int]
  4286. ncurses_attron(|int attributes)
  4287. [ncurses_attrset | Set given attributes, returns int]
  4288. ncurses_attrset(|int attributes)
  4289. [ncurses_baudrate | Returns baudrate of terminal, returns int]
  4290. ncurses_baudrate()|
  4291. [ncurses_beep | Let the terminal beep, returns int]
  4292. ncurses_beep()|
  4293. [ncurses_bkgd | Set background property for terminal screen, returns int]
  4294. ncurses_bkgd(|int attrchar)
  4295. [ncurses_bkgdset | Control screen background, returns void]
  4296. ncurses_bkgdset(|int attrchar)
  4297. [ncurses_border | Draw a border around the screen using attributed characters, returns int]
  4298. ncurses_border(|int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
  4299. [ncurses_bottom_panel | Moves a visible panel to the bottom of the stack, returns int]
  4300. ncurses_bottom_panel(|resource panel)
  4301. [ncurses_can_change_color | Check if we can change terminals colors, returns bool]
  4302. ncurses_can_change_color()|
  4303. [ncurses_cbreak | Switch of input buffering, returns bool]
  4304. ncurses_cbreak()|
  4305. [ncurses_clear | Clear screen, returns bool]
  4306. ncurses_clear()|
  4307. [ncurses_clrtobot | Clear screen from current position to bottom, returns bool]
  4308. ncurses_clrtobot()|
  4309. [ncurses_clrtoeol | Clear screen from current position to end of line, returns bool]
  4310. ncurses_clrtoeol()|
  4311. [ncurses_color_content | Gets the RGB value for color, returns int]
  4312. ncurses_color_content(|int color, int &r, int &g, int &b)
  4313. [ncurses_color_set | Set fore- and background color, returns int]
  4314. ncurses_color_set(|int pair)
  4315. [ncurses_curs_set | Set cursor state, returns int]
  4316. ncurses_curs_set(|int visibility)
  4317. [ncurses_def_prog_mode | Saves terminals (program) mode, returns bool]
  4318. ncurses_def_prog_mode()|
  4319. [ncurses_def_shell_mode | Saves terminals (shell) mode, returns bool]
  4320. ncurses_def_shell_mode()|
  4321. [ncurses_define_key | Define a keycode, returns int]
  4322. ncurses_define_key(|string definition, int keycode)
  4323. [ncurses_del_panel | Remove panel from the stack and delete it (but not the associated window), returns int]
  4324. ncurses_del_panel(|resource panel)
  4325. [ncurses_delay_output | Delay output on terminal using padding characters, returns int]
  4326. ncurses_delay_output(|int milliseconds)
  4327. [ncurses_delch | Delete character at current position, move rest of line left, returns bool]
  4328. ncurses_delch()|
  4329. [ncurses_deleteln | Delete line at current position, move rest of screen up, returns bool]
  4330. ncurses_deleteln()|
  4331. [ncurses_delwin | Delete a ncurses window, returns int]
  4332. ncurses_delwin(|resource window)
  4333. [ncurses_doupdate | Write all prepared refreshes to terminal, returns bool]
  4334. ncurses_doupdate()|
  4335. [ncurses_echo | Activate keyboard input echo, returns bool]
  4336. ncurses_echo()|
  4337. [ncurses_echochar | Single character output including refresh, returns int]
  4338. ncurses_echochar(|int character)
  4339. [ncurses_end | Stop using ncurses, clean up the screen, returns int]
  4340. ncurses_end()|
  4341. [ncurses_erase | Erase terminal screen, returns bool]
  4342. ncurses_erase()|
  4343. [ncurses_erasechar | Returns current erase character, returns string]
  4344. ncurses_erasechar()|
  4345. [ncurses_filter | , returns int]
  4346. ncurses_filter()|
  4347. [ncurses_flash | Flash terminal screen (visual bell), returns bool]
  4348. ncurses_flash()|
  4349. [ncurses_flushinp | Flush keyboard input buffer, returns bool]
  4350. ncurses_flushinp()|
  4351. [ncurses_getch | Read a character from keyboard, returns int]
  4352. ncurses_getch()|
  4353. [ncurses_getmaxyx | Returns the size of a window, returns void]
  4354. ncurses_getmaxyx(|resource window, int &y, int &x)
  4355. [ncurses_getmouse | Reads mouse event, returns bool]
  4356. ncurses_getmouse(|array mevent)
  4357. [ncurses_getyx | Returns the current cursor position for a window, returns void]
  4358. ncurses_getyx(|resource window, int &y, int &x)
  4359. [ncurses_halfdelay | Put terminal into halfdelay mode, returns int]
  4360. ncurses_halfdelay(|int tenth)
  4361. [ncurses_has_colors | Check if terminal has colors, returns bool]
  4362. ncurses_has_colors()|
  4363. [ncurses_has_ic | Check for insert- and delete-capabilities, returns bool]
  4364. ncurses_has_ic()|
  4365. [ncurses_has_il | Check for line insert- and delete-capabilities, returns bool]
  4366. ncurses_has_il()|
  4367. [ncurses_has_key | Check for presence of a function key on terminal keyboard, returns int]
  4368. ncurses_has_key(|int keycode)
  4369. [ncurses_hide_panel | Remove panel from the stack, making it invisible, returns int]
  4370. ncurses_hide_panel(|resource panel)
  4371. [ncurses_hline | Draw a horizontal line at current position using an attributed character and max. n characters long, returns int]
  4372. ncurses_hline(|int charattr, int n)
  4373. [ncurses_inch | Get character and attribute at current position, returns string]
  4374. ncurses_inch()|
  4375. [ncurses_init_color | Set new RGB value for color, returns int]
  4376. ncurses_init_color(|int color, int r, int g, int b)
  4377. [ncurses_init_pair | Allocate a color pair, returns int]
  4378. ncurses_init_pair(|int pair, int fg, int bg)
  4379. [ncurses_init | Initialize ncurses, returns int]
  4380. ncurses_init()|
  4381. [ncurses_insch | Insert character moving rest of line including character at current position, returns int]
  4382. ncurses_insch(|int character)
  4383. [ncurses_insdelln | Insert lines before current line scrolling down (negative numbers delete and scroll up), returns int]
  4384. ncurses_insdelln(|int count)
  4385. [ncurses_insertln | Insert a line, move rest of screen down, returns bool]
  4386. ncurses_insertln()|
  4387. [ncurses_insstr | Insert string at current position, moving rest of line right, returns int]
  4388. ncurses_insstr(|string text)
  4389. [ncurses_instr | Reads string from terminal screen, returns int]
  4390. ncurses_instr(|string buffer)
  4391. [ncurses_isendwin | Ncurses is in endwin mode, normal screen output may be performed, returns bool]
  4392. ncurses_isendwin()|
  4393. [ncurses_keyok | Enable or disable a keycode, returns int]
  4394. ncurses_keyok(|int keycode, bool enable)
  4395. [ncurses_keypad | Turns keypad on or off, returns int]
  4396. ncurses_keypad(|resource window, bool bf)
  4397. [ncurses_killchar | Returns current line kill character, returns bool]
  4398. ncurses_killchar()|
  4399. [ncurses_longname | Returns terminals description, returns string]
  4400. ncurses_longname()|
  4401. [ncurses_meta | Enables/Disable 8-bit meta key information, returns long]
  4402. ncurses_meta(|resource window, bool 8bit)
  4403. [ncurses_mouse_trafo | Transforms coordinates, returns bool]
  4404. ncurses_mouse_trafo(|int &y, int &x, bool toscreen)
  4405. [ncurses_mouseinterval | Set timeout for mouse button clicks, returns int]
  4406. ncurses_mouseinterval(|int milliseconds)
  4407. [ncurses_mousemask | Sets mouse options, returns int]
  4408. ncurses_mousemask(|int newmask, int oldmask)
  4409. [ncurses_move_panel | Moves a panel so that it's upper-left corner is at [startx, starty], returns int]
  4410. ncurses_move_panel(|resource panel, int startx, int starty)
  4411. [ncurses_move | Move output position, returns int]
  4412. ncurses_move(|int y, int x)
  4413. [ncurses_mvaddch | Move current position and add character, returns int]
  4414. ncurses_mvaddch(|int y, int x, int c)
  4415. [ncurses_mvaddchnstr | Move position and add attrributed string with specified length, returns int]
  4416. ncurses_mvaddchnstr(|int y, int x, string s, int n)
  4417. [ncurses_mvaddchstr | Move position and add attributed string, returns int]
  4418. ncurses_mvaddchstr(|int y, int x, string s)
  4419. [ncurses_mvaddnstr | Move position and add string with specified length, returns int]
  4420. ncurses_mvaddnstr(|int y, int x, string s, int n)
  4421. [ncurses_mvaddstr | Move position and add string, returns int]
  4422. ncurses_mvaddstr(|int y, int x, string s)
  4423. [ncurses_mvcur | Move cursor immediately, returns int]
  4424. ncurses_mvcur(|int old_y, int old_x, int new_y, int new_x)
  4425. [ncurses_mvdelch | Move position and delete character, shift rest of line left, returns int]
  4426. ncurses_mvdelch(|int y, int x)
  4427. [ncurses_mvgetch | Move position and get character at new position, returns int]
  4428. ncurses_mvgetch(|int y, int x)
  4429. [ncurses_mvhline | Set new position and draw a horizontal line using an attributed character and max. n characters long, returns int]
  4430. ncurses_mvhline(|int y, int x, int attrchar, int n)
  4431. [ncurses_mvinch | Move position and get attributed character at new position, returns int]
  4432. ncurses_mvinch(|int y, int x)
  4433. [ncurses_mvvline | Set new position and draw a vertical line using an attributed character and max. n characters long, returns int]
  4434. ncurses_mvvline(|int y, int x, int attrchar, int n)
  4435. [ncurses_mvwaddstr | Add string at new position in window, returns int]
  4436. ncurses_mvwaddstr(|resource window, int y, int x, string text)
  4437. [ncurses_napms | Sleep, returns int]
  4438. ncurses_napms(|int milliseconds)
  4439. [ncurses_new_panel | Create a new panel and associate it with window, returns resource]
  4440. ncurses_new_panel(|resource window)
  4441. [ncurses_newpad | Creates a new pad (window), returns resource]
  4442. ncurses_newpad(|int rows, int cols)
  4443. [ncurses_newwin | Create a new window, returns int]
  4444. ncurses_newwin(|int rows, int cols, int y, int x)
  4445. [ncurses_nl | Translate newline and carriage return / line feed, returns bool]
  4446. ncurses_nl()|
  4447. [ncurses_nocbreak | Switch terminal to cooked mode, returns bool]
  4448. ncurses_nocbreak()|
  4449. [ncurses_noecho | Switch off keyboard input echo, returns bool]
  4450. ncurses_noecho()|
  4451. [ncurses_nonl | Do not translate newline and carriage return / line feed, returns bool]
  4452. ncurses_nonl()|
  4453. [ncurses_noqiflush | Do not flush on signal characters, returns int]
  4454. ncurses_noqiflush()|
  4455. [ncurses_noraw | Switch terminal out of raw mode, returns bool]
  4456. ncurses_noraw()|
  4457. [ncurses_pair_content | Gets the RGB value for color, returns int]
  4458. ncurses_pair_content(|int pair, int &f, int &b)
  4459. [ncurses_panel_above | Returns the panel above panel. If panel is null, returns the bottom panel in the stack, returns int]
  4460. ncurses_panel_above(|resource panel)
  4461. [ncurses_panel_below | Returns the panel below panel. If panel is null, returns the top panel in the stack, returns int]
  4462. ncurses_panel_below(|resource panel)
  4463. [ncurses_panel_window | Returns the window associated with panel, returns int]
  4464. ncurses_panel_window(|resource panel)
  4465. [ncurses_pnoutrefresh | Copys a region from a pad into the virtual screen, returns int]
  4466. ncurses_pnoutrefresh(|resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
  4467. [ncurses_prefresh | Copys a region from a pad into the virtual screen, returns int]
  4468. ncurses_prefresh(|resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)
  4469. [ncurses_putp | , returns int]
  4470. ncurses_putp(|string text)
  4471. [ncurses_qiflush | Flush on signal characters, returns int]
  4472. ncurses_qiflush()|
  4473. [ncurses_raw | Switch terminal into raw mode, returns bool]
  4474. ncurses_raw()|
  4475. [ncurses_refresh | Refresh screen, returns int]
  4476. ncurses_refresh(|int ch)
  4477. [ncurses_replace_panel | Replaces the window associated with panel, returns int]
  4478. ncurses_replace_panel(|resource panel, resource window)
  4479. [ncurses_reset_prog_mode | Resets the prog mode saved by def_prog_mode, returns int]
  4480. ncurses_reset_prog_mode()|
  4481. [ncurses_reset_shell_mode | Resets the shell mode saved by def_shell_mode, returns int]
  4482. ncurses_reset_shell_mode()|
  4483. [ncurses_resetty | Restores saved terminal state, returns bool]
  4484. ncurses_resetty()|
  4485. [ncurses_savetty | Saves terminal state, returns bool]
  4486. ncurses_savetty()|
  4487. [ncurses_scr_dump | Dump screen content to file, returns int]
  4488. ncurses_scr_dump(|string filename)
  4489. [ncurses_scr_init | Initialize screen from file dump, returns int]
  4490. ncurses_scr_init(|string filename)
  4491. [ncurses_scr_restore | Restore screen from file dump, returns int]
  4492. ncurses_scr_restore(|string filename)
  4493. [ncurses_scr_set | Inherit screen from file dump, returns int]
  4494. ncurses_scr_set(|string filename)
  4495. [ncurses_scrl | Scroll window content up or down without changing current position, returns int]
  4496. ncurses_scrl(|int count)
  4497. [ncurses_show_panel | Places an invisible panel on top of the stack, making it visible, returns int]
  4498. ncurses_show_panel(|resource panel)
  4499. [ncurses_slk_attr | Returns current soft label key attribute, returns bool]
  4500. ncurses_slk_attr()|
  4501. [ncurses_slk_attroff | , returns int]
  4502. ncurses_slk_attroff(|int intarg)
  4503. [ncurses_slk_attron | , returns int]
  4504. ncurses_slk_attron(|int intarg)
  4505. [ncurses_slk_attrset | , returns int]
  4506. ncurses_slk_attrset(|int intarg)
  4507. [ncurses_slk_clear | Clears soft labels from screen, returns bool]
  4508. ncurses_slk_clear()|
  4509. [ncurses_slk_color | Sets color for soft label keys, returns int]
  4510. ncurses_slk_color(|int intarg)
  4511. [ncurses_slk_init | Initializes soft label key functions, returns bool]
  4512. ncurses_slk_init(|int format)
  4513. [ncurses_slk_noutrefresh | Copies soft label keys to virtual screen, returns bool]
  4514. ncurses_slk_noutrefresh()|
  4515. [ncurses_slk_refresh | Copies soft label keys to screen, returns bool]
  4516. ncurses_slk_refresh()|
  4517. [ncurses_slk_restore | Restores soft label keys, returns bool]
  4518. ncurses_slk_restore()|
  4519. [ncurses_slk_set | Sets function key labels, returns bool]
  4520. ncurses_slk_set(|int labelnr, string label, int format)
  4521. [ncurses_slk_touch | Fources output when ncurses_slk_noutrefresh is performed, returns bool]
  4522. ncurses_slk_touch()|
  4523. [ncurses_standend | Stop using 'standout' attribute, returns int]
  4524. ncurses_standend()|
  4525. [ncurses_standout | Start using 'standout' attribute, returns int]
  4526. ncurses_standout()|
  4527. [ncurses_start_color | Start using colors, returns int]
  4528. ncurses_start_color()|
  4529. [ncurses_termattrs | Returns a logical OR of all attribute flags supported by terminal, returns bool]
  4530. ncurses_termattrs()|
  4531. [ncurses_termname | Returns terminals (short)-name, returns string]
  4532. ncurses_termname()|
  4533. [ncurses_timeout | Set timeout for special key sequences, returns void]
  4534. ncurses_timeout(|int millisec)
  4535. [ncurses_top_panel | Moves a visible panel to the top of the stack, returns int]
  4536. ncurses_top_panel(|resource panel)
  4537. [ncurses_typeahead | Specify different filedescriptor for typeahead checking, returns int]
  4538. ncurses_typeahead(|int fd)
  4539. [ncurses_ungetch | Put a character back into the input stream, returns int]
  4540. ncurses_ungetch(|int keycode)
  4541. [ncurses_ungetmouse | Pushes mouse event to queue, returns bool]
  4542. ncurses_ungetmouse(|array mevent)
  4543. [ncurses_update_panels | Refreshes the virtual screen to reflect the relations between panels in the stack., returns void]
  4544. ncurses_update_panels()|
  4545. [ncurses_use_default_colors | Assign terminal default colors to color id -1, returns bool]
  4546. ncurses_use_default_colors()|
  4547. [ncurses_use_env | Control use of environment information about terminal size, returns void]
  4548. ncurses_use_env(|bool flag)
  4549. [ncurses_use_extended_names | Control use of extended names in terminfo descriptions, returns int]
  4550. ncurses_use_extended_names(|bool flag)
  4551. [ncurses_vidattr | , returns int]
  4552. ncurses_vidattr(|int intarg)
  4553. [ncurses_vline | Draw a vertical line at current position using an attributed character and max. n characters long, returns int]
  4554. ncurses_vline(|int charattr, int n)
  4555. [ncurses_waddch | Adds character at current position in a window and advance cursor, returns int]
  4556. ncurses_waddch(|resource window, int ch)
  4557. [ncurses_waddstr | Outputs text at current postion in window, returns int]
  4558. ncurses_waddstr(|resource window, string str, [int n])
  4559. [ncurses_wattroff | Turns off attributes for a window, returns int]
  4560. ncurses_wattroff(|resource window, int attrs)
  4561. [ncurses_wattron | Turns on attributes for a window, returns int]
  4562. ncurses_wattron(|resource window, int attrs)
  4563. [ncurses_wattrset | Set the attributes for a window, returns int]
  4564. ncurses_wattrset(|resource window, int attrs)
  4565. [ncurses_wborder | Draws a border around the window using attributed characters, returns int]
  4566. ncurses_wborder(|resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)
  4567. [ncurses_wclear | Clears window, returns int]
  4568. ncurses_wclear(|resource window)
  4569. [ncurses_wcolor_set | Sets windows color pairings, returns int]
  4570. ncurses_wcolor_set(|resource window, int color_pair)
  4571. [ncurses_werase | Erase window contents, returns long]
  4572. ncurses_werase(|resource window)
  4573. [ncurses_wgetch | Reads a character from keyboard (window), returns int]
  4574. ncurses_wgetch(|resource window)
  4575. [ncurses_whline | Draws a horizontal line in a window at current position using an attributed character and max. n characters long, returns int]
  4576. ncurses_whline(|resource window, int charattr, int n)
  4577. [ncurses_wmouse_trafo | Transforms window/stdscr coordinates, returns bool]
  4578. ncurses_wmouse_trafo(|resource window, int &y, int &x, bool toscreen)
  4579. [ncurses_wmove | Moves windows output position, returns int]
  4580. ncurses_wmove(|resource window, int y, int x)
  4581. [ncurses_wnoutrefresh | Copies window to virtual screen, returns int]
  4582. ncurses_wnoutrefresh(|resource window)
  4583. [ncurses_wrefresh | Refresh window on terminal screen, returns int]
  4584. ncurses_wrefresh(|resource window)
  4585. [ncurses_wstandend | End standout mode for a window, returns int]
  4586. ncurses_wstandend(|resource window)
  4587. [ncurses_wstandout | Enter standout mode for a window, returns int]
  4588. ncurses_wstandout(|resource window)
  4589. [ncurses_wvline | Draws a vertical line in a window at current position using an attributed character and max. n characters long, returns int]
  4590. ncurses_wvline(|resource window, int charattr, int n)
  4591. ; -----------------------------------------------------------------------------
  4592. ; Lotus Notes - Lotus Notes functions
  4593. ; -----------------------------------------------------------------------------
  4594. [notes_body | Open the message msg_number in the specified mailbox on the specified server (leave serv, returns array]
  4595. notes_body(|string server, string mailbox, int msg_number)
  4596. [notes_copy_db | Create a note using form form_name, returns string]
  4597. notes_copy_db(|string from_database_name, string to_database_name)
  4598. [notes_create_db | Create a Lotus Notes database, returns bool]
  4599. notes_create_db(|string database_name)
  4600. [notes_create_note | Create a note using form form_name, returns string]
  4601. notes_create_note(|string database_name, string form_name)
  4602. [notes_drop_db | Drop a Lotus Notes database, returns bool]
  4603. notes_drop_db(|string database_name)
  4604. [notes_find_note | Returns a note id found in database_name. Specify the name of the note. Leaving type bla, returns bool]
  4605. notes_find_note(|string database_name, string name, [string type])
  4606. [notes_header_info | Open the message msg_number in the specified mailbox on the specified server (leave serv, returns object]
  4607. notes_header_info(|string server, string mailbox, int msg_number)
  4608. [notes_list_msgs | Returns the notes from a selected database_name, returns bool]
  4609. notes_list_msgs(|string db)
  4610. [notes_mark_read | Mark a note_id as read for the User user_name, returns string]
  4611. notes_mark_read(|string database_name, string user_name, string note_id)
  4612. [notes_mark_unread | Mark a note_id as unread for the User user_name, returns string]
  4613. notes_mark_unread(|string database_name, string user_name, string note_id)
  4614. [notes_nav_create | Create a navigator name, in database_name, returns bool]
  4615. notes_nav_create(|string database_name, string name)
  4616. [notes_search | Find notes that match keywords in database_name, returns string]
  4617. notes_search(|string database_name, string keywords)
  4618. [notes_unread | Returns the unread note id's for the current User user_name, returns string]
  4619. notes_unread(|string database_name, string user_name)
  4620. [notes_version | Get the version Lotus Notes, returns string]
  4621. notes_version(|string database_name)
  4622. ; -----------------------------------------------------------------------------
  4623. ; NSAPI - NSAPI-specific Functions
  4624. ; -----------------------------------------------------------------------------
  4625. [nsapi_request_headers | Fetch all HTTP request headers, returns array]
  4626. nsapi_request_headers()|
  4627. [nsapi_response_headers | Fetch all HTTP response headers, returns array]
  4628. nsapi_response_headers()|
  4629. [nsapi_virtual | Perform an NSAPI sub-request, returns int]
  4630. nsapi_virtual(|string uri)
  4631. ; -----------------------------------------------------------------------------
  4632. ; ODBC - Unified ODBC functions
  4633. ; -----------------------------------------------------------------------------
  4634. [odbc_autocommit | Toggle autocommit behaviour, returns bool]
  4635. odbc_autocommit(|resource connection_id, [bool OnOff])
  4636. [odbc_binmode | Handling of binary column data, returns int]
  4637. odbc_binmode(|resource result_id, int mode)
  4638. [odbc_close_all | Close all ODBC connections, returns void]
  4639. odbc_close_all()|
  4640. [odbc_close | Close an ODBC connection, returns void]
  4641. odbc_close(|resource connection_id)
  4642. [odbc_columnprivileges | Returns a result identifier that can be used to fetch a list of columns and associated privileges, returns int]
  4643. odbc_columnprivileges(|resource connection_id, [string qualifier], [string owner], [string table_name], [string column_name])
  4644. [odbc_columns | Lists the column names in specified tables. Returns a result identifier containing the information., returns resource]
  4645. odbc_columns(|resource connection_id, [string qualifier], [string schema], [string table_name], [string column_name])
  4646. [odbc_commit | Commit an ODBC transaction, returns bool]
  4647. odbc_commit(|resource connection_id)
  4648. [odbc_connect | Connect to a datasource, returns resource]
  4649. odbc_connect(|string dsn, string user, string password, [int cursor_type])
  4650. [odbc_cursor | Get cursorname, returns string]
  4651. odbc_cursor(|resource result_id)
  4652. [odbc_data_source | Returns information about a current connection, returns resource]
  4653. odbc_data_source(|resource connection_id, constant fetch_type)
  4654. [odbc_do | Synonym for odbc_exec, returns resource]
  4655. odbc_do(|resource conn_id, string query)
  4656. [odbc_error | Get the last error code, returns string]
  4657. odbc_error(|[resource connection_id])
  4658. [odbc_errormsg | Get the last error message, returns string]
  4659. odbc_errormsg(|[resource connection_id])
  4660. [odbc_exec | Prepare and execute a SQL statement, returns resource]
  4661. odbc_exec(|resource connection_id, string query_string)
  4662. [odbc_execute | Execute a prepared statement, returns bool]
  4663. odbc_execute(|resource result_id, [array parameters_array])
  4664. [odbc_fetch_array | Fetch a result row as an associative array, returns array]
  4665. odbc_fetch_array(|resource result, [int rownumber])
  4666. [odbc_fetch_into | Fetch one result row into array, returns bool]
  4667. odbc_fetch_into(|resource result_id, [int rownumber], array result_array)
  4668. [odbc_fetch_object | Fetch a result row as an object, returns object]
  4669. odbc_fetch_object(|resource result, [int rownumber])
  4670. [odbc_fetch_row | Fetch a row, returns bool]
  4671. odbc_fetch_row(|resource result_id, [int row_number])
  4672. [odbc_field_len | Get the length (precision) of a field, returns int]
  4673. odbc_field_len(|resource result_id, int field_number)
  4674. [odbc_field_name | Get the columnname, returns string]
  4675. odbc_field_name(|resource result_id, int field_number)
  4676. [odbc_field_num | Return column number, returns int]
  4677. odbc_field_num(|resource result_id, string field_name)
  4678. [odbc_field_precision | Synonym for odbc_field_len, returns string]
  4679. odbc_field_precision(|resource result_id, int field_number)
  4680. [odbc_field_scale | Get the scale of a field, returns string]
  4681. odbc_field_scale(|resource result_id, int field_number)
  4682. [odbc_field_type | Datatype of a field, returns string]
  4683. odbc_field_type(|resource result_id, int field_number)
  4684. [odbc_foreignkeys | Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table, returns resource]
  4685. odbc_foreignkeys(|resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)
  4686. [odbc_free_result | Free resources associated with a result, returns bool]
  4687. odbc_free_result(|resource result_id)
  4688. [odbc_gettypeinfo | Returns a result identifier containing information about data types supported by the data source., returns int]
  4689. odbc_gettypeinfo(|resource connection_id, [int data_type])
  4690. [odbc_longreadlen | Handling of LONG columns, returns int]
  4691. odbc_longreadlen(|resource result_id, int length)
  4692. [odbc_next_result | Checks if multiple results are available, returns bool]
  4693. odbc_next_result(|resource result_id)
  4694. [odbc_num_fields | Number of columns in a result, returns int]
  4695. odbc_num_fields(|resource result_id)
  4696. [odbc_num_rows | Number of rows in a result, returns int]
  4697. odbc_num_rows(|resource result_id)
  4698. [odbc_pconnect | Open a persistent database connection, returns resource]
  4699. odbc_pconnect(|string dsn, string user, string password, [int cursor_type])
  4700. [odbc_prepare | Prepares a statement for execution, returns resource]
  4701. odbc_prepare(|resource connection_id, string query_string)
  4702. [odbc_primarykeys | Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table, returns resource]
  4703. odbc_primarykeys(|resource connection_id, string qualifier, string owner, string table)
  4704. [odbc_procedurecolumns | Retrieve information about parameters to procedures, returns resource]
  4705. odbc_procedurecolumns(|resource connection_id, [string qualifier], [string owner], [string proc], [string column])
  4706. [odbc_procedures | Get the list of procedures stored in a specific data source. Returns a result identifier containing the information., returns resource]
  4707. odbc_procedures(|resource connection_id, [string qualifier], [string owner], [string name])
  4708. [odbc_result_all | Print result as HTML table, returns int]
  4709. odbc_result_all(|resource result_id, [string format])
  4710. [odbc_result | Get result data, returns string]
  4711. odbc_result(|resource result_id, mixed field)
  4712. [odbc_rollback | Rollback a transaction, returns int]
  4713. odbc_rollback(|resource connection_id)
  4714. [odbc_setoption | Adjust ODBC settings. Returns FALSE if an error occurs, otherwise TRUE., returns int]
  4715. odbc_setoption(|resource id, int function, int option, int param)
  4716. [odbc_specialcolumns | Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction, returns resource]
  4717. odbc_specialcolumns(|resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)
  4718. [odbc_statistics | Retrieve statistics about a table, returns resource]
  4719. odbc_statistics(|resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy)
  4720. [odbc_tableprivileges | Lists tables and the privileges associated with each table, returns int]
  4721. odbc_tableprivileges(|resource connection_id, [string qualifier], [string owner], [string name])
  4722. [odbc_tables | Get the list of table names stored in a specific data source. Returns a result identifier containing the information., returns int]
  4723. odbc_tables(|resource connection_id, [string qualifier], [string owner], [string name], [string types])
  4724. ; -----------------------------------------------------------------------------
  4725. ; Object Aggregation - Object Aggregation/Composition Functions
  4726. ; -----------------------------------------------------------------------------
  4727. [aggregate_info | returns an associative array of the methods and properties from each class that has been aggregated to the object., returns array]
  4728. aggregate_info(|object object)
  4729. [aggregate_methods_by_list | selective dynamic class methods aggregation to an object, returns void]
  4730. aggregate_methods_by_list(|object object, string class_name, array methods_list, [bool exclude])
  4731. [aggregate_methods_by_regexp | selective class methods aggregation to an object using a regular expression, returns void]
  4732. aggregate_methods_by_regexp(|object object, string class_name, string regexp, [bool exclude])
  4733. [aggregate_methods | dynamic class and object aggregation of methods, returns void]
  4734. aggregate_methods(|object object, string class_name)
  4735. [aggregate_properties_by_list | selective dynamic class properties aggregation to an object, returns void]
  4736. aggregate_properties_by_list(|object object, string class_name, array properties_list, [bool exclude])
  4737. [aggregate_properties_by_regexp | selective class properties aggregation to an object using a regular expression, returns void]
  4738. aggregate_properties_by_regexp(|object object, string class_name, string regexp, [bool exclude])
  4739. [aggregate_properties | dynamic aggregation of class properties to an object, returns void]
  4740. aggregate_properties(|object object, string class_name)
  4741. [aggregate | dynamic class and object aggregation of methods and properties, returns void]
  4742. aggregate(|object object, string class_name)
  4743. [aggregation_info | Alias for aggregate_info]
  4744. aggregation_info(|)
  4745. [deaggregate | Removes the aggregated methods and properties from an object, returns void]
  4746. deaggregate(|object object, [string class_name])
  4747. ; -----------------------------------------------------------------------------
  4748. ; OCI8 - Oracle 8 functions
  4749. ; -----------------------------------------------------------------------------
  4750. [ocibindbyname | Bind a PHP variable to an Oracle Placeholder, returns bool]
  4751. ocibindbyname(|resource stmt, string ph_name, mixed &variable, [int maxlength], [int type])
  4752. [ocicancel | Cancel reading from cursor, returns bool]
  4753. ocicancel(|resource stmt)
  4754. [ocicloselob | Closes lob descriptor, returns bool]
  4755. ocicloselob()|
  4756. [ocicollappend | Append an object to the collection, returns bool]
  4757. ocicollappend(|string value)
  4758. [ocicollassign | Assign a collection from another existing collection, returns bool]
  4759. ocicollassign(|object from)
  4760. [ocicollassignelem | Assign element val to collection at index ndx, returns bool]
  4761. ocicollassignelem(|int ndx, string val)
  4762. [ocicollgetelem | Retrieve the value at collection index ndx, returns string]
  4763. ocicollgetelem(|int ndx)
  4764. [ocicollmax | Return the max value of a collection. For a varray this is the maximum length of the array, returns int]
  4765. ocicollmax()|
  4766. [ocicollsize | Return the size of a collection, returns int]
  4767. ocicollsize()|
  4768. [ocicolltrim | Trim num elements from the end of a collection, returns bool]
  4769. ocicolltrim(|int num)
  4770. [ocicolumnisnull | Test whether a result column is NULL, returns bool]
  4771. ocicolumnisnull(|resource stmt, mixed col)
  4772. [ocicolumnname | Returns the name of a column, returns string]
  4773. ocicolumnname(|resource stmt, int col)
  4774. [ocicolumnprecision | Tell the precision of a column, returns int]
  4775. ocicolumnprecision(|resource stmt, int col)
  4776. [ocicolumnscale | Tell the scale of a column, returns int]
  4777. ocicolumnscale(|resource stmt, int col)
  4778. [ocicolumnsize | Return result column size, returns int]
  4779. ocicolumnsize(|resource stmt, mixed column)
  4780. [ocicolumntype | Returns the data type of a column, returns mixed]
  4781. ocicolumntype(|resource stmt, int col)
  4782. [ocicolumntyperaw | Tell the raw oracle data type of a column, returns mixed]
  4783. ocicolumntyperaw(|resource stmt, int col)
  4784. [ocicommit | Commits outstanding transactions, returns bool]
  4785. ocicommit(|resource connection)
  4786. [ocidefinebyname | Use a PHP variable for the define-step during a SELECT, returns bool]
  4787. ocidefinebyname(|resource stmt, string column_name, mixed &variable, [int type])
  4788. [ocierror | Return the last error of stmt|conn|global, returns array]
  4789. ocierror(|[resource stmt|conn|global])
  4790. [ociexecute | Execute a statement, returns bool]
  4791. ociexecute(|resource stmt, [int mode])
  4792. [ocifetch | Fetches the next row into result-buffer, returns bool]
  4793. ocifetch(|resource stmt)
  4794. [ocifetchinto | Fetches the next row into an array, returns int]
  4795. ocifetchinto(|resource stmt, array &result, [int mode])
  4796. [ocifetchstatement | Fetch all rows of result data into an array, returns int]
  4797. ocifetchstatement(|resource stmt, array &output, [int skip], [int maxrows], [int flags])
  4798. [ocifreecollection | Deletes collection object, returns bool]
  4799. ocifreecollection()|
  4800. [ocifreecursor | Free all resources associated with a cursor, returns bool]
  4801. ocifreecursor(|resource stmt)
  4802. [ocifreedesc | Deletes a large object descriptor, returns bool]
  4803. ocifreedesc()|
  4804. [ocifreestatement | Free all resources associated with a statement, returns bool]
  4805. ocifreestatement(|resource stmt)
  4806. [ociinternaldebug | Enables or disables internal debug output, returns void]
  4807. ociinternaldebug(|int onoff)
  4808. [ociloadlob | Loads a large object, returns string]
  4809. ociloadlob()|
  4810. [ocilogoff | Disconnects from Oracle server, returns bool]
  4811. ocilogoff(|resource connection)
  4812. [ocilogon | Establishes a connection to Oracle, returns resource]
  4813. ocilogon(|string username, string password, [string db])
  4814. [ocinewcollection | Initialize a new collection, returns object]
  4815. ocinewcollection(|resource connection, string tdo, [string schema])
  4816. [ocinewcursor | Return a new cursor (Statement-Handle), returns resource]
  4817. ocinewcursor(|resource conn)
  4818. [ocinewdescriptor | Initialize a new empty LOB or FILE descriptor, returns object]
  4819. ocinewdescriptor(|resource connection, [int type])
  4820. [ocinlogon | Establishes a new connection to Oracle, returns resource]
  4821. ocinlogon(|string username, string password, [string db])
  4822. [ocinumcols | Return the number of result columns in a statement, returns int]
  4823. ocinumcols(|resource stmt)
  4824. [ociparse | Parse a query and return an Oracle statement, returns resource]
  4825. ociparse(|resource conn, string query)
  4826. [ociplogon | Connect to an Oracle database using a persistent connection, returns resource]
  4827. ociplogon(|string username, string password, [string db])
  4828. [ociresult | Returns column value for fetched row, returns mixed]
  4829. ociresult(|resource statement, mixed col)
  4830. [ocirollback | Rolls back outstanding transactions, returns bool]
  4831. ocirollback(|resource connection)
  4832. [ocirowcount | Gets the number of affected rows, returns int]
  4833. ocirowcount(|resource stmt)
  4834. [ocisavelob | Saves a large object, returns bool]
  4835. ocisavelob()|
  4836. [ocisavelobfile | Saves a large object file, returns bool]
  4837. ocisavelobfile()|
  4838. [ociserverversion | Return a string containing server version information, returns string]
  4839. ociserverversion(|resource conn)
  4840. [ocisetprefetch | Sets number of rows to be prefetched, returns bool]
  4841. ocisetprefetch(|resource stmt, int rows)
  4842. [ocistatementtype | Return the type of an OCI statement, returns string]
  4843. ocistatementtype(|resource stmt)
  4844. [ociwritelobtofile | Saves a large object file, returns bool]
  4845. ociwritelobtofile(|[string filename], [int start], [int length])
  4846. [ociwritetemporarylob | Writes temporary blob, returns bool]
  4847. ociwritetemporarylob(|string var, [int lob_type])
  4848. ; -----------------------------------------------------------------------------
  4849. ; OpenSSL - OpenSSL functions
  4850. ; -----------------------------------------------------------------------------
  4851. [openssl_csr_export_to_file | Exports a CSR to a file, returns bool]
  4852. openssl_csr_export_to_file(|resource csr, string outfilename, [bool notext])
  4853. [openssl_csr_export | Exports a CSR as a string, returns bool]
  4854. openssl_csr_export(|resource csr, string &out, [bool notext])
  4855. [openssl_csr_new | Generates a CSR, returns bool]
  4856. openssl_csr_new(|array dn, resource privkey, [array configargs], [array extraattribs])
  4857. [openssl_csr_sign | Sign a CSR with another certificate (or itself) and generate a certificate, returns resource]
  4858. openssl_csr_sign(|mixed csr, mixed cacert, mixed priv_key, int days)
  4859. [openssl_error_string | Return openSSL error message, returns mixed]
  4860. openssl_error_string()|
  4861. [openssl_free_key | Free key resource, returns void]
  4862. openssl_free_key(|resource key_identifier)
  4863. [openssl_get_privatekey | Get a private key, returns resource]
  4864. openssl_get_privatekey(|mixed key, [string passphrase])
  4865. [openssl_get_publickey | Extract public key from certificate and prepare it for use, returns resource]
  4866. openssl_get_publickey(|mixed certificate)
  4867. [openssl_open | Open sealed data, returns bool]
  4868. openssl_open(|string sealed_data, string open_data, string env_key, mixed priv_key_id)
  4869. [openssl_pkcs7_decrypt | Decrypts an S/MIME encrypted message, returns bool]
  4870. openssl_pkcs7_decrypt(|string infilename, string outfilename, mixed recipcert, [mixed recipkey])
  4871. [openssl_pkcs7_encrypt | Encrypt an S/MIME message, returns bool]
  4872. openssl_pkcs7_encrypt(|string infile, string outfile, mixed recipcerts, array headers, [int flags])
  4873. [openssl_pkcs7_sign | sign an S/MIME message, returns bool]
  4874. openssl_pkcs7_sign(|string infilename, string outfilename, mixed signcert, mixed privkey, array headers, [int flags], [string extracerts])
  4875. [openssl_pkcs7_verify | Verifies the signature of an S/MIME signed message, returns bool]
  4876. openssl_pkcs7_verify(|string filename, int flags, [string outfilename], [array cainfo], [string extracerts])
  4877. [openssl_pkey_export_to_file | Gets an exportable representation of a key into a file, returns bool]
  4878. openssl_pkey_export_to_file(|mixed key, string outfilename, [string passphrase], [array configargs])
  4879. [openssl_pkey_export | Gets an exportable representation of a key into a string, returns bool]
  4880. openssl_pkey_export(|mixed key, string &out, [string passphrase], [array configargs])
  4881. [openssl_pkey_get_private | Get a private key, returns resource]
  4882. openssl_get_privatekey(|mixed key, [string passphrase])
  4883. [openssl_pkey_get_public | Extract public key from certificate and prepare it for use, returns resource]
  4884. openssl_pkey_get_public(|mixed certificate)
  4885. [openssl_pkey_new | Generates a new private key, returns resource]
  4886. openssl_pkey_new(|[array configargs])
  4887. [openssl_private_decrypt | Decrypts data with private key, returns bool]
  4888. openssl_private_decrypt(|string data, string &decrypted, mixed key, [int padding])
  4889. [openssl_private_encrypt | Encrypts data with private key, returns bool]
  4890. openssl_private_encrypt(|string data, string crypted, mixed key, [int padding])
  4891. [openssl_public_decrypt | Decrypts data with public key, returns bool]
  4892. openssl_public_decrypt(|string data, string crypted, resource key, [int padding])
  4893. [openssl_public_encrypt | Encrypts data with public key, returns bool]
  4894. openssl_public_encrypt(|string data, string crypted, mixed key, [int padding])
  4895. [openssl_seal | Seal (encrypt) data, returns int]
  4896. openssl_seal(|string data, string sealed_data, array env_keys, array pub_key_ids)
  4897. [openssl_sign | Generate signature, returns bool]
  4898. openssl_sign(|string data, string signature, mixed priv_key_id)
  4899. [openssl_verify | Verify signature, returns int]
  4900. openssl_verify(|string data, string signature, mixed pub_key_id)
  4901. [openssl_x509_check_private_key | Checks if a private key corresponds to a certificate, returns bool]
  4902. openssl_x509_check_private_key(|mixed cert, mixed key)
  4903. [openssl_x509_checkpurpose | Verifies if a certificate can be used for a particular purpose, returns bool]
  4904. openssl_x509_checkpurpose(|mixed x509cert, int purpose, array cainfo, [string untrustedfile])
  4905. [openssl_x509_export_to_file | Exports a certificate to file, returns bool]
  4906. openssl_x509_export_to_file(|mixed x509, string outfilename, [bool notext])
  4907. [openssl_x509_export | Exports a certificate as a string, returns bool]
  4908. openssl_x509_export(|mixed x509, string &output, [bool notext])
  4909. [openssl_x509_free | Free certificate resource, returns void]
  4910. openssl_x509_free(|resource x509cert)
  4911. [openssl_x509_parse | Parse an X509 certificate and return the information as an array, returns array]
  4912. openssl_x509_parse(|mixed x509cert, [bool shortnames])
  4913. [openssl_x509_read | Parse an X.509 certificate and return a resource identifier for it, returns resource]
  4914. openssl_x509_read(|mixed x509certdata)
  4915. ; -----------------------------------------------------------------------------
  4916. ; Oracle - Oracle functions
  4917. ; -----------------------------------------------------------------------------
  4918. [ora_bind | Binds a PHP variable to an Oracle parameter, returns bool]
  4919. ora_bind(|resource cursor, string PHP_variable_name, string SQL_parameter_name, int length, [int type])
  4920. [ora_close | Closes an Oracle cursor, returns bool]
  4921. ora_close(|resource cursor)
  4922. [ora_columnname | Gets the name of an Oracle result column, returns string]
  4923. ora_columnname(|resource cursor, int column)
  4924. [ora_columnsize | Returns the size of an Oracle result column, returns int]
  4925. ora_columnsize(|resource cursor, int column)
  4926. [ora_columntype | Gets the type of an Oracle result column, returns string]
  4927. ora_columntype(|resource cursor, int column)
  4928. [ora_commit | Commit an Oracle transaction, returns bool]
  4929. ora_commit(|resource conn)
  4930. [ora_commitoff | Disable automatic commit, returns bool]
  4931. ora_commitoff(|resource conn)
  4932. [ora_commiton | Enable automatic commit, returns bool]
  4933. ora_commiton(|resource conn)
  4934. [ora_do | Parse, Exec, Fetch, returns resource]
  4935. ora_do(|resource conn, string query)
  4936. [ora_error | Gets an Oracle error message, returns string]
  4937. ora_error(|resource cursor_or_connection)
  4938. [ora_errorcode | Gets an Oracle error code, returns int]
  4939. ora_errorcode(|resource cursor_or_connection)
  4940. [ora_exec | Execute a parsed statement on an Oracle cursor, returns bool]
  4941. ora_exec(|resource cursor)
  4942. [ora_fetch_into | Fetch a row into the specified result array, returns int]
  4943. ora_fetch_into(|resource cursor, array result, [int flags])
  4944. [ora_fetch | Fetch a row of data from a cursor, returns bool]
  4945. ora_fetch(|resource cursor)
  4946. [ora_getcolumn | Get data from a fetched column, returns mixed]
  4947. ora_getcolumn(|resource cursor, int column)
  4948. [ora_logoff | Close an Oracle connection, returns bool]
  4949. ora_logoff(|resource connection)
  4950. [ora_logon | Open an Oracle connection, returns resource]
  4951. ora_logon(|string user, string password)
  4952. [ora_numcols | Returns the number of columns, returns int]
  4953. ora_numcols(|resource cursor)
  4954. [ora_numrows | Returns the number of rows, returns int]
  4955. ora_numrows(|resource cursor)
  4956. [ora_open | Opens an Oracle cursor, returns resource]
  4957. ora_open(|resource connection)
  4958. [ora_parse | Parse an SQL statement with Oracle, returns bool]
  4959. ora_parse(|resource cursor, string sql_statement, int defer)
  4960. [ora_plogon | Open a persistent Oracle connection, returns resource]
  4961. ora_plogon(|string user, string password)
  4962. [ora_rollback | Rolls back a transaction, returns bool]
  4963. ora_rollback(|resource connection)
  4964. ; -----------------------------------------------------------------------------
  4965. ; OvrimosSQL - Ovrimos SQL functions
  4966. ; -----------------------------------------------------------------------------
  4967. [ovrimos_close | Closes the connection to ovrimos, returns void]
  4968. ovrimos_close(|int connection)
  4969. [ovrimos_commit | Commits the transaction, returns bool]
  4970. ovrimos_commit(|int connection_id)
  4971. [ovrimos_connect | Connect to the specified database, returns int]
  4972. ovrimos_connect(|string host, string db, string user, string password)
  4973. [ovrimos_cursor | Returns the name of the cursor, returns string]
  4974. ovrimos_cursor(|int result_id)
  4975. [ovrimos_exec | Executes an SQL statement, returns int]
  4976. ovrimos_exec(|int connection_id, string query)
  4977. [ovrimos_execute | Executes a prepared SQL statement, returns bool]
  4978. ovrimos_execute(|int result_id, [array parameters_array])
  4979. [ovrimos_fetch_into | Fetches a row from the result set, returns bool]
  4980. ovrimos_fetch_into(|int result_id, array result_array, [string how], [int rownumber])
  4981. [ovrimos_fetch_row | Fetches a row from the result set, returns bool]
  4982. ovrimos_fetch_row(|int result_id, [int how], [int row_number])
  4983. [ovrimos_field_len | Returns the length of the output column, returns int]
  4984. ovrimos_field_len(|int result_id, int field_number)
  4985. [ovrimos_field_name | Returns the output column name, returns string]
  4986. ovrimos_field_name(|int result_id, int field_number)
  4987. [ovrimos_field_num | Returns the (1-based) index of the output column, returns int]
  4988. ovrimos_field_num(|int result_id, string field_name)
  4989. [ovrimos_field_type | Returns the (numeric) type of the output column, returns int]
  4990. ovrimos_field_type(|int result_id, int field_number)
  4991. [ovrimos_free_result | Frees the specified result_id, returns bool]
  4992. ovrimos_free_result(|int result_id)
  4993. [ovrimos_longreadlen | Specifies how many bytes are to be retrieved from long datatypes, returns bool]
  4994. ovrimos_longreadlen(|int result_id, int length)
  4995. [ovrimos_num_fields | Returns the number of columns, returns int]
  4996. ovrimos_num_fields(|int result_id)
  4997. [ovrimos_num_rows | Returns the number of rows affected by update operations, returns int]
  4998. ovrimos_num_rows(|int result_id)
  4999. [ovrimos_prepare | Prepares an SQL statement, returns int]
  5000. ovrimos_prepare(|int connection_id, string query)
  5001. [ovrimos_result_all | Prints the whole result set as an HTML table, returns int]
  5002. ovrimos_result_all(|int result_id, [string format])
  5003. [ovrimos_result | Retrieves the output column, returns string]
  5004. ovrimos_result(|int result_id, mixed field)
  5005. [ovrimos_rollback | Rolls back the transaction, returns bool]
  5006. ovrimos_rollback(|int connection_id)
  5007. ; -----------------------------------------------------------------------------
  5008. ; Output Control - Output Control Functions
  5009. ; -----------------------------------------------------------------------------
  5010. [flush | Flush the output buffer, returns void]
  5011. flush()|
  5012. [ob_clean | Clean (erase) the output buffer, returns void]
  5013. ob_clean()|
  5014. [ob_end_clean | Clean (erase) the output buffer and turn off output buffering, returns bool]
  5015. ob_end_clean()|
  5016. [ob_end_flush | Flush (send) the output buffer and turn off output buffering, returns bool]
  5017. ob_end_flush()|
  5018. [ob_flush | Flush (send) the output buffer, returns void]
  5019. ob_flush()|
  5020. [ob_get_clean | Get current buffer contents and delete current output buffer, returns string]
  5021. ob_get_clean()|
  5022. [ob_get_contents | Return the contents of the output buffer, returns string]
  5023. ob_get_contents()|
  5024. [ob_get_length | Return the length of the output buffer, returns int]
  5025. ob_get_length()|
  5026. [ob_get_level | Return the nesting level of the output buffering mechanism, returns int]
  5027. ob_get_level()|
  5028. [ob_get_status | Get status of output buffers, returns array]
  5029. ob_get_status(|[bool full_status])
  5030. [ob_gzhandler | ob_start callback function to gzip output buffer, returns string]
  5031. ob_gzhandler(|string buffer, [int mode])
  5032. [ob_implicit_flush | Turn implicit flush on/off, returns void]
  5033. ob_implicit_flush(|[int flag])
  5034. [ob_start | Turn on output buffering, returns bool]
  5035. ob_start(|[callback output_callback])
  5036. ; -----------------------------------------------------------------------------
  5037. ; Object overloading - Object property and method call overloading
  5038. ; -----------------------------------------------------------------------------
  5039. [overload | Enable property and method call overloading for a class, returns void]
  5040. overload(|[string class_name])
  5041. ; -----------------------------------------------------------------------------
  5042. ; PDF - PDF functions
  5043. ; -----------------------------------------------------------------------------
  5044. [pdf_add_annotation | Deprecated: Adds annotation]
  5045. [pdf_add_bookmark | Adds bookmark for current page, returns int]
  5046. pdf_add_bookmark(|resource pdfdoc, string text, [int parent], [int open])
  5047. [pdf_add_launchlink | Add a launch annotation for current page, returns bool]
  5048. pdf_add_launchlink(|resource pdfdoc, float llx, float lly, float urx, float ury, string filename)
  5049. [pdf_add_locallink | Add a link annotation for current page, returns bool]
  5050. pdf_add_locallink(|resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest)
  5051. [pdf_add_note | Sets annotation for current page, returns bool]
  5052. pdf_add_note(|resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open)
  5053. [pdf_add_outline | Deprecated: Adds bookmark for current page]
  5054. [pdf_add_pdflink | Adds file link annotation for current page, returns bool]
  5055. pdf_add_pdflink(|resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest)
  5056. [pdf_add_thumbnail | Adds thumbnail for current page, returns bool]
  5057. pdf_add_thumbnail(|resource pdfdoc, int image)
  5058. [pdf_add_weblink | Adds weblink for current page, returns bool]
  5059. pdf_add_weblink(|resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url)
  5060. [pdf_arc | Draws an arc (counterclockwise), returns bool]
  5061. pdf_arc(|resource pdfdoc, float x, float y, float r, float alpha, float beta)
  5062. [pdf_arcn | Draws an arc (clockwise), returns bool]
  5063. pdf_arcn(|resource pdfdoc, float x, float y, float r, float alpha, float beta)
  5064. [pdf_attach_file | Adds a file attachment for current page, returns bool]
  5065. pdf_attach_file(|resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon)
  5066. [pdf_begin_page | Starts new page, returns bool]
  5067. pdf_begin_page(|resource pdfdoc, float width, float height)
  5068. [pdf_begin_pattern | Starts new pattern, returns int]
  5069. pdf_begin_pattern(|resource pdfdoc, float width, float height, float xstep, float ystep, int painttype)
  5070. [pdf_begin_template | Starts new template, returns int]
  5071. pdf_begin_template(|resource pdfdoc, float width, float height)
  5072. [pdf_circle | Draws a circle, returns bool]
  5073. pdf_circle(|resource pdfdoc, float x, float y, float r)
  5074. [pdf_clip | Clips to current path, returns bool]
  5075. pdf_clip(|resource pdfdoc)
  5076. [pdf_close_image | Closes an image, returns void]
  5077. pdf_close_image(|resource pdfdoc, int image)
  5078. [pdf_close_pdi_page | Close the page handle, returns bool]
  5079. pdf_close_pdi_page(|resource pdfdoc, int pagehandle)
  5080. [pdf_close_pdi | Close the input PDF document, returns bool]
  5081. pdf_close_pdi(|resource pdfdoc, int dochandle)
  5082. [pdf_close | Closes a pdf resource, returns bool]
  5083. pdf_close(|resource pdfdoc)
  5084. [pdf_closepath_fill_stroke | Closes, fills and strokes current path, returns bool]
  5085. pdf_closepath_fill_stroke(|resource pdfdoc)
  5086. [pdf_closepath_stroke | Closes path and draws line along path, returns bool]
  5087. pdf_closepath_stroke(|resource pdfdoc)
  5088. [pdf_closepath | Closes path, returns bool]
  5089. pdf_closepath(|resource pdfdoc)
  5090. [pdf_concat | Concatenate a matrix to the CTM, returns bool]
  5091. pdf_concat(|resource pdfdoc, float a, float b, float c, float d, float e, float f)
  5092. [pdf_continue_text | Outputs text in next line, returns bool]
  5093. pdf_continue_text(|resource pdfdoc, string text)
  5094. [pdf_curveto | Draws a curve, returns bool]
  5095. pdf_curveto(|resource pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3)
  5096. [pdf_delete | Deletes a PDF object, returns bool]
  5097. pdf_delete(|resource pdfdoc)
  5098. [pdf_end_page | Ends a page, returns bool]
  5099. pdf_end_page(|resource pdfdoc)
  5100. [pdf_end_pattern | Finish pattern, returns bool]
  5101. pdf_end_pattern(|resource pdfdoc)
  5102. [pdf_end_template | Finish template, returns bool]
  5103. pdf_end_template(|resource pdfdoc)
  5104. [pdf_endpath | Deprecated: Ends current path]
  5105. [pdf_fill_stroke | Fills and strokes current path, returns bool]
  5106. pdf_fill_stroke(|resource pdfdoc)
  5107. [pdf_fill | Fills current path, returns bool]
  5108. pdf_fill(|resource pdfdoc)
  5109. [pdf_findfont | Prepare font for later use with pdf_setfont., returns int]
  5110. pdf_findfont(|resource pdfdoc, string fontname, string encoding, [int embed])
  5111. [pdf_get_buffer | Fetch the buffer containig the generated PDF data., returns string]
  5112. pdf_get_buffer(|resource pdfdoc)
  5113. [pdf_get_font | Deprecated: font handling]
  5114. [pdf_get_fontname | Deprecated: font handling]
  5115. [pdf_get_fontsize | Deprecated: font handling]
  5116. [pdf_get_image_height | Deprecated: returns height of an image]
  5117. [pdf_get_image_width | Deprecated: Returns width of an image]
  5118. [pdf_get_majorversion | Returns the major version number of the PDFlib, returns int]
  5119. pdf_get_majorversion()|
  5120. [pdf_get_minorversion | Returns the minor version number of the PDFlib, returns int]
  5121. pdf_get_minorversion()|
  5122. [pdf_get_parameter | Gets certain parameters, returns string]
  5123. pdf_get_parameter(|resource pdfdoc, string key, [float modifier])
  5124. [pdf_get_pdi_parameter | Get some PDI string parameters, returns string]
  5125. pdf_get_pdi_parameter(|resource pdfdoc, string key, int document, int page, int index)
  5126. [pdf_get_pdi_value | Gets some PDI numerical parameters, returns string]
  5127. pdf_get_pdi_value(|resource pdfdoc, string key, int doc, int page, int index)
  5128. [pdf_get_value | Gets certain numerical value, returns float]
  5129. pdf_get_value(|resource pdfdoc, string key, [float modifier])
  5130. [pdf_initgraphics | Resets graphic state, returns bool]
  5131. pdf_initgraphics(|resource pdfdoc)
  5132. [pdf_lineto | Draws a line, returns bool]
  5133. pdf_lineto(|resource pdfdoc, float x, float y)
  5134. [pdf_makespotcolor | Makes a spotcolor, returns bool]
  5135. pdf_makespotcolor(|resource pdfdoc, string spotname)
  5136. [pdf_moveto | Sets current point, returns bool]
  5137. pdf_moveto(|resource pdfdoc, float x, float y)
  5138. [pdf_new | Creates a new pdf resource, returns resource]
  5139. pdf_new(| )
  5140. [pdf_open_CCITT | Opens a new image file with raw CCITT data, returns int]
  5141. pdf_open_CCITT(|resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1)
  5142. [pdf_open_file | Opens a new pdf object, returns bool]
  5143. pdf_open_file(|resource pdfdoc, [string filename])
  5144. [pdf_open_gif | Deprecated: Opens a GIF image]
  5145. [pdf_open_image_file | Reads an image from a file, returns int]
  5146. pdf_open_image_file(|resource pdfdoc, string imagetype, string filename, [string stringparam], [string intparam])
  5147. [pdf_open_image | Versatile function for images, returns int]
  5148. pdf_open_image(|resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params)
  5149. [pdf_open_jpeg | Deprecated: Opens a JPEG image]
  5150. [pdf_open_memory_image | Opens an image created with PHP's image functions, returns int]
  5151. pdf_open_memory_image(|resource pdfdoc, resource image)
  5152. [pdf_open_pdi_page | Prepare a page, returns int]
  5153. pdf_open_pdi_page(|resource pdfdoc, int dochandle, int pagenumber, string pagelabel)
  5154. [pdf_open_pdi | Opens a PDF file, returns int]
  5155. pdf_open_pdi(|resource pdfdoc, string filename, string stringparam, int intparam)
  5156. [pdf_open_png | Deprecated: Opens a PNG image]
  5157. [pdf_open_tiff | Deprecated: Opens a TIFF image]
  5158. [pdf_open | Deprecated: Open a new pdf object]
  5159. [pdf_place_image | Places an image on the page, returns bool]
  5160. pdf_place_image(|resource pdfdoc, int image, float x, float y, float scale)
  5161. [pdf_place_pdi_page | Places an image on the page, returns bool]
  5162. pdf_place_pdi_page(|resource pdfdoc, int page, float x, float y, float sx, float sy)
  5163. [pdf_rect | Draws a rectangle, returns bool]
  5164. pdf_rect(|resource pdfdoc, float x, float y, float width, float height)
  5165. [pdf_restore | Restores formerly saved environment, returns bool]
  5166. pdf_restore(|resource pdfdoc)
  5167. [pdf_rotate | Sets rotation, returns bool]
  5168. pdf_rotate(|resource pdfdoc, float phi)
  5169. [pdf_save | Saves the current environment, returns bool]
  5170. pdf_save(|resource pdfdoc)
  5171. [pdf_scale | Sets scaling, returns bool]
  5172. pdf_scale(|resource pdfdoc, float x-scale, float y-scale)
  5173. [pdf_set_border_color | Sets color of border around links and annotations, returns bool]
  5174. pdf_set_border_color(|resource pdfdoc, float red, float green, float blue)
  5175. [pdf_set_border_dash | Sets dash style of border around links and annotations, returns bool]
  5176. pdf_set_border_dash(|resource pdfdoc, float black, float white)
  5177. [pdf_set_border_style | Sets style of border around links and annotations, returns bool]
  5178. pdf_set_border_style(|resource pdfdoc, string style, float width)
  5179. [pdf_set_char_spacing | Deprecated: Sets character spacing]
  5180. [pdf_set_duration | Deprecated: Sets duration between pages]
  5181. [pdf_set_font | Deprecated: Selects a font face and size]
  5182. [pdf_set_horiz_scaling | Sets horizontal scaling of text]
  5183. [pdf_set_info_author | Deprecated: Fills the author field of the document]
  5184. [pdf_set_info_creator | Deprecated: Fills the creator field of the document]
  5185. [pdf_set_info_keywords | Deprecated: Fills the keywords field of the document]
  5186. [pdf_set_info_subject | Deprecated: Fills the subject field of the document]
  5187. [pdf_set_info_title | Deprecated: Fills the title field of the document]
  5188. [pdf_set_info | Fills a field of the document information, returns bool]
  5189. pdf_set_info(|resource pdfdoc, string key, string value)
  5190. [pdf_set_leading | Deprecated: Sets distance between text lines]
  5191. [pdf_set_parameter | Sets certain parameters, returns bool]
  5192. pdf_set_parameter(|resource pdfdoc, string key, string value)
  5193. [pdf_set_text_matrix | Deprecated: Sets the text matrix]
  5194. [pdf_set_text_pos | Sets text position, returns bool]
  5195. pdf_set_text_pos(|resource pdfdoc, float x, float y)
  5196. [pdf_set_text_rendering | Deprecated: Determines how text is rendered]
  5197. [pdf_set_text_rise | Deprecated: Sets the text rise]
  5198. [pdf_set_value | Sets certain numerical value, returns bool]
  5199. pdf_set_value(|resource pdfdoc, string key, float value)
  5200. [pdf_set_word_spacing | Deprecated: Sets spacing between words]
  5201. [pdf_setcolor | Sets fill and stroke color, returns bool]
  5202. pdf_setcolor(|resource pdfdoc, string type, string colorspace, float c1, [float c2], [float c3], [float c4])
  5203. [pdf_setdash | Sets dash pattern, returns bool]
  5204. pdf_setdash(|resource pdfdoc, float b, float w)
  5205. [pdf_setflat | Sets flatness, returns bool]
  5206. pdf_setflat(|resource pdfdoc, float flatness)
  5207. [pdf_setfont | Set the current font, returns bool]
  5208. pdf_setfont(|resource pdfdoc, int font, float size)
  5209. [pdf_setgray_fill | Sets filling color to gray value, returns bool]
  5210. pdf_setgray_fill(|resource pdfdoc, float gray)
  5211. [pdf_setgray_stroke | Sets drawing color to gray value, returns bool]
  5212. pdf_setgray_stroke(|resource pdfdoc, float gray)
  5213. [pdf_setgray | Sets drawing and filling color to gray value, returns bool]
  5214. pdf_setgray(|resource pdfdoc, float gray)
  5215. [pdf_setlinecap | Sets linecap parameter, returns void]
  5216. pdf_setlinecap(|resource pdfdoc, int linecap)
  5217. [pdf_setlinejoin | Sets linejoin parameter, returns bool]
  5218. pdf_setlinejoin(|resource pdfdoc, int value)
  5219. [pdf_setlinewidth | Sets line width, returns void]
  5220. pdf_setlinewidth(|resource pdfdoc, float width)
  5221. [pdf_setmatrix | Sets current transformation matrix, returns bool]
  5222. pdf_setmatrix(|resource pdfdoc, float a, float b, float c, float d, float e, float f)
  5223. [pdf_setmiterlimit | Sets miter limit, returns bool]
  5224. pdf_setmiterlimit(|resource pdfdoc, float miter)
  5225. [pdf_setpolydash | Deprecated: Sets complicated dash pattern]
  5226. [pdf_setrgbcolor_fill | Sets filling color to rgb color value, returns bool]
  5227. pdf_setrgbcolor_fill(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5228. [pdf_setrgbcolor_stroke | Sets drawing color to rgb color value, returns bool]
  5229. pdf_setrgbcolor_stroke(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5230. [pdf_setrgbcolor | Sets drawing and filling color to rgb color value, returns bool]
  5231. pdf_setrgbcolor(|resource pdfdoc, float red_value, float green_value, float blue_value)
  5232. [pdf_show_boxed | Output text in a box, returns int]
  5233. pdf_show_boxed(|resource pdfdoc, string text, float left, float top, float width, float height, string mode, [string feature])
  5234. [pdf_show_xy | Output text at given position, returns bool]
  5235. pdf_show_xy(|resource pdfdoc, string text, float x, float y)
  5236. [pdf_show | Output text at current position, returns bool]
  5237. pdf_show(|resource pdfdoc, string text)
  5238. [pdf_skew | Skews the coordinate system, returns bool]
  5239. pdf_skew(|resource pdfdoc, float alpha, float beta)
  5240. [pdf_stringwidth | Returns width of text using current font, returns float]
  5241. pdf_stringwidth(|resource pdfdoc, string text, [int font], [float size])
  5242. [pdf_stroke | Draws line along path, returns bool]
  5243. pdf_stroke(|resource pdfdoc)
  5244. [pdf_translate | Sets origin of coordinate system, returns bool]
  5245. pdf_translate(|resource pdfdoc, float tx, float ty)
  5246. ; -----------------------------------------------------------------------------
  5247. ; Verisign Payflow Pro - Verisign Payflow Pro functions
  5248. ; -----------------------------------------------------------------------------
  5249. [pfpro_cleanup | Shuts down the Payflow Pro library, returns void]
  5250. pfpro_cleanup()|
  5251. [pfpro_init | Initialises the Payflow Pro library, returns void]
  5252. pfpro_init()|
  5253. [pfpro_process_raw | Process a raw transaction with Payflow Pro, returns string]
  5254. pfpro_process_raw(|string parameters, [string address], [int port], [int timeout], [string proxy_address], [int proxy_port], [string proxy_logon], [string proxy_password])
  5255. [pfpro_process | Process a transaction with Payflow Pro, returns array]
  5256. pfpro_process(|array parameters, [string address], [int port], [int timeout], [string proxy_address], [int proxy_port], [string proxy_logon], [string proxy_password])
  5257. [pfpro_version | Returns the version of the Payflow Pro software, returns string]
  5258. pfpro_version()|
  5259. ; -----------------------------------------------------------------------------
  5260. ; PHP Options/Info - PHP Options&Information
  5261. ; -----------------------------------------------------------------------------
  5262. [assert_options | Set/get the various assert flags, returns mixed]
  5263. assert_options(|int what, [mixed value])
  5264. [assert | Checks if assertion is FALSE, returns int]
  5265. assert(|mixed assertion)
  5266. [dl | Loads a PHP extension at runtime, returns int]
  5267. dl(|string library)
  5268. [extension_loaded | Find out whether an extension is loaded, returns bool]
  5269. extension_loaded(|string name)
  5270. [get_cfg_var | Gets the value of a PHP configuration option, returns string]
  5271. get_cfg_var(|string varname)
  5272. [get_current_user | Gets the name of the owner of the current PHP script, returns string]
  5273. get_current_user()|
  5274. [get_defined_constants | Returns an associative array with the names of all the constants and their values, returns array]
  5275. get_defined_constants()|
  5276. [get_extension_funcs | Returns an array with the names of the functions of a module, returns array]
  5277. get_extension_funcs(|string module_name)
  5278. [get_include_path | Gets the current include_path configuration option, returns string]
  5279. get_include_path()|
  5280. [get_included_files | Returns an array with the names of included or required files, returns array]
  5281. get_included_files()|
  5282. [get_loaded_extensions | Returns an array with the names of all modules compiled and loaded, returns array]
  5283. get_loaded_extensions()|
  5284. [get_magic_quotes_gpc | Gets the current active configuration setting of magic quotes gpc, returns int]
  5285. get_magic_quotes_gpc()|
  5286. [get_magic_quotes_runtime | Gets the current active configuration setting of magic_quotes_runtime, returns int]
  5287. get_magic_quotes_runtime()|
  5288. [get_required_files | Alias of get_included_files]
  5289. get_required_files(|)
  5290. [getenv | Gets the value of an environment variable, returns string]
  5291. getenv(|string varname)
  5292. [getlastmod | Gets time of last page modification, returns int]
  5293. getlastmod()|
  5294. [getmygid | Get PHP script owner's GID, returns int]
  5295. getmygid()|
  5296. [getmyinode | Gets the inode of the current script, returns int]
  5297. getmyinode()|
  5298. [getmypid | Gets PHP's process ID, returns int]
  5299. getmypid()|
  5300. [getmyuid | Gets PHP script owner's UID, returns int]
  5301. getmyuid()|
  5302. [getopt | Gets options from the command line argument list, returns string]
  5303. getopt(|string options)
  5304. [getrusage | Gets the current resource usages, returns array]
  5305. getrusage(|[int who])
  5306. [ini_alter | Alias of ini_set]
  5307. ini_alter(|)
  5308. [ini_get_all | Gets all configuration options, returns array]
  5309. ini_get_all(|[string extension])
  5310. [ini_get | Gets the value of a configuration option, returns string]
  5311. ini_get(|string varname)
  5312. [ini_restore | Restores the value of a configuration option, returns string]
  5313. ini_restore(|string varname)
  5314. [ini_set | Sets the value of a configuration option, returns string]
  5315. ini_set(|string varname, string newvalue)
  5316. [main | Dummy for main]
  5317. [memory_get_usage | Returns the amount of memory allocated to PHP, returns int]
  5318. memory_get_usage()|
  5319. [php_ini_scanned_files | Return a list of .ini files parsed from the additional ini dir, returns string]
  5320. php_ini_scanned_files()|
  5321. [php_logo_guid | Gets the logo guid, returns string]
  5322. php_logo_guid()|
  5323. [php_sapi_name | Returns the type of interface between web server and PHP, returns string]
  5324. php_sapi_name()|
  5325. [php_uname | Returns information about the operating system PHP was built on, returns string]
  5326. php_uname()|
  5327. [phpcredits | Prints out the credits for PHP, returns void]
  5328. phpcredits(|[int flag])
  5329. [phpinfo | Outputs lots of PHP information, returns int]
  5330. phpinfo(|[int what])
  5331. [phpversion | Gets the current PHP version, returns string]
  5332. phpversion()|
  5333. [putenv | Sets the value of an environment variable, returns void]
  5334. putenv(|string setting)
  5335. [restore_include_path | Restores the value of the include_path configuration option, returns void]
  5336. restore_include_path()|
  5337. [set_include_path | Sets the include_path configuration option, returns string]
  5338. set_include_path(|string new_include_path)
  5339. [set_magic_quotes_runtime | Sets the current active configuration setting of magic_quotes_runtime, returns bool]
  5340. set_magic_quotes_runtime(|int new_setting)
  5341. [set_time_limit | Limits the maximum execution time, returns void]
  5342. set_time_limit(|int seconds)
  5343. [version_compare | Compares two "PHP-standardized" version number strings, returns int]
  5344. version_compare(|string version1, string version2, [string operator])
  5345. [zend_logo_guid | Gets the zend guid, returns string]
  5346. zend_logo_guid()|
  5347. [zend_version | Gets the version of the current Zend engine, returns string]
  5348. zend_version()|
  5349. ; -----------------------------------------------------------------------------
  5350. ; POSIX - POSIX functions
  5351. ; -----------------------------------------------------------------------------
  5352. [posix_ctermid | Get path name of controlling terminal, returns string]
  5353. posix_ctermid()|
  5354. [posix_get_last_error | Retrieve the error number set by the last posix function that failed., returns int]
  5355. posix_get_last_error()|
  5356. [posix_getcwd | Pathname of current directory, returns string]
  5357. posix_getcwd()|
  5358. [posix_getegid | Return the effective group ID of the current process, returns int]
  5359. posix_getegid()|
  5360. [posix_geteuid | Return the effective user ID of the current process, returns int]
  5361. posix_geteuid()|
  5362. [posix_getgid | Return the real group ID of the current process, returns int]
  5363. posix_getgid()|
  5364. [posix_getgrgid | Return info about a group by group id, returns array]
  5365. posix_getgrgid(|int gid)
  5366. [posix_getgrnam | Return info about a group by name, returns array]
  5367. posix_getgrnam(|string name)
  5368. [posix_getgroups | Return the group set of the current process, returns array]
  5369. posix_getgroups()|
  5370. [posix_getlogin | Return login name, returns string]
  5371. posix_getlogin()|
  5372. [posix_getpgid | Get process group id for job control, returns int]
  5373. posix_getpgid(|int pid)
  5374. [posix_getpgrp | Return the current process group identifier, returns int]
  5375. posix_getpgrp()|
  5376. [posix_getpid | Return the current process identifier, returns int]
  5377. posix_getpid()|
  5378. [posix_getppid | Return the parent process identifier, returns int]
  5379. posix_getppid()|
  5380. [posix_getpwnam | Return info about a user by username, returns array]
  5381. posix_getpwnam(|string username)
  5382. [posix_getpwuid | Return info about a user by user id, returns array]
  5383. posix_getpwuid(|int uid)
  5384. [posix_getrlimit | Return info about system resource limits, returns array]
  5385. posix_getrlimit()|
  5386. [posix_getsid | Get the current sid of the process, returns int]
  5387. posix_getsid(|int pid)
  5388. [posix_getuid | Return the real user ID of the current process, returns int]
  5389. posix_getuid()|
  5390. [posix_isatty | Determine if a file descriptor is an interactive terminal, returns bool]
  5391. posix_isatty(|int fd)
  5392. [posix_kill | Send a signal to a process, returns bool]
  5393. posix_kill(|int pid, int sig)
  5394. [posix_mkfifo | Create a fifo special file (a named pipe), returns bool]
  5395. posix_mkfifo(|string pathname, int mode)
  5396. [posix_setegid | Set the effective GID of the current process, returns bool]
  5397. posix_setegid(|int gid)
  5398. [posix_seteuid | Set the effective UID of the current process, returns bool]
  5399. posix_seteuid(|int uid)
  5400. [posix_setgid | Set the GID of the current process, returns bool]
  5401. posix_setgid(|int gid)
  5402. [posix_setpgid | set process group id for job control, returns int]
  5403. posix_setpgid(|int pid, int pgid)
  5404. [posix_setsid | Make the current process a session leader, returns int]
  5405. posix_setsid()|
  5406. [posix_setuid | Set the UID of the current process, returns bool]
  5407. posix_setuid(|int uid)
  5408. [posix_strerror | Retrieve the system error message associated with the given errno., returns string]
  5409. posix_strerror(|int errno)
  5410. [posix_times | Get process times, returns array]
  5411. posix_times()|
  5412. [posix_ttyname | Determine terminal device name, returns string]
  5413. posix_ttyname(|int fd)
  5414. [posix_uname | Get system name, returns array]
  5415. posix_uname()|
  5416. ; -----------------------------------------------------------------------------
  5417. ; PostgreSQL - PostgreSQL functions
  5418. ; -----------------------------------------------------------------------------
  5419. [pg_affected_rows | Returns number of affected records (tuples), returns int]
  5420. pg_affected_rows(|resource result)
  5421. [pg_cancel_query | Cancel asynchronous query, returns bool]
  5422. pg_cancel_query(|resource connection)
  5423. [pg_client_encoding | Gets the client encoding, returns string]
  5424. pg_client_encoding(|[resource connection])
  5425. [pg_close | Closes a PostgreSQL connection, returns bool]
  5426. pg_close(|resource connection)
  5427. [pg_connect | Open a PostgreSQL connection, returns resource]
  5428. pg_connect(|string connection_string)
  5429. [pg_connection_busy | Get connection is busy or not, returns bool]
  5430. pg_connection_busy(|resource connection)
  5431. [pg_connection_reset | Reset connection (reconnect), returns bool]
  5432. pg_connection_reset(|resource connection)
  5433. [pg_connection_status | Get connection status, returns int]
  5434. pg_connection_status(|resource connection)
  5435. [pg_convert | Convert associative array value into suitable for SQL statement., returns array]
  5436. pg_convert(|resource connection, string table_name, array assoc_array, [int options])
  5437. [pg_copy_from | Insert records into a table from an array, returns bool]
  5438. pg_copy_from(|resource connection, string table_name, array rows, [string delimiter], [string null_as])
  5439. [pg_copy_to | Copy a table to an array, returns array]
  5440. pg_copy_to(|resource connection, string table_name, [string delimiter], [string null_as])
  5441. [pg_dbname | Get the database name, returns string]
  5442. pg_dbname(|resource connection)
  5443. [pg_delete | Deletes records., returns mixed]
  5444. pg_delete(|resource connection, string table_name, array assoc_array, [int options])
  5445. [pg_end_copy | Sync with PostgreSQL backend, returns bool]
  5446. pg_end_copy(|[resource connection])
  5447. [pg_escape_bytea | Escape binary for bytea type, returns string]
  5448. pg_escape_bytea(|string data)
  5449. [pg_escape_string | Escape string for text/char type, returns string]
  5450. pg_escape_string(|string data)
  5451. [pg_fetch_all | Fetches all rows from a result as an array, returns array]
  5452. pg_fetch_all(|resource result)
  5453. [pg_fetch_array | Fetch a row as an array, returns array]
  5454. pg_fetch_array(|resource result, [int row], [int result_type])
  5455. [pg_fetch_assoc | Fetch a row as an associative array, returns array]
  5456. pg_fetch_assoc(|resource result, [int row])
  5457. [pg_fetch_object | Fetch a row as an object, returns object]
  5458. pg_fetch_object(|resource result, [int row], [int result_type])
  5459. [pg_fetch_result | Returns values from a result resource, returns mixed]
  5460. pg_fetch_result(|resource result, int row, mixed field)
  5461. [pg_fetch_row | Get a row as an enumerated array, returns array]
  5462. pg_fetch_row(|resource result, int row)
  5463. [pg_field_is_null | Test if a field is NULL, returns int]
  5464. pg_field_is_null(|resource result, int row, mixed field)
  5465. [pg_field_name | Returns the name of a field, returns string]
  5466. pg_field_name(|resource result, int field_number)
  5467. [pg_field_num | Returns the field number of the named field, returns int]
  5468. pg_field_num(|resource result, string field_name)
  5469. [pg_field_prtlen | Returns the printed length, returns int]
  5470. pg_field_prtlen(|resource result, int row_number, string field_name)
  5471. [pg_field_size | Returns the internal storage size of the named field, returns int]
  5472. pg_field_size(|resource result, int field_number)
  5473. [pg_field_type | Returns the type name for the corresponding field number, returns string]
  5474. pg_field_type(|resource result, int field_number)
  5475. [pg_free_result | Free result memory, returns bool]
  5476. pg_free_result(|resource result)
  5477. [pg_get_notify | Ping database connection, returns array]
  5478. pg_get_notify(|resource connection, [int result_type])
  5479. [pg_get_pid | Ping database connection, returns int]
  5480. pg_get_pid(|resource connection)
  5481. [pg_get_result | Get asynchronous query result, returns resource]
  5482. pg_get_result(|[resource connection])
  5483. [pg_host | Returns the host name associated with the connection, returns string]
  5484. pg_host(|resource connection)
  5485. [pg_insert | Insert array into table., returns bool]
  5486. pg_insert(|resource connection, string table_name, array assoc_array, [int options])
  5487. [pg_last_error | Get the last error message string of a connection, returns string]
  5488. pg_last_error(|[resource connection])
  5489. [pg_last_notice | Returns the last notice message from PostgreSQL server, returns string]
  5490. pg_last_notice(|resource connection)
  5491. [pg_last_oid | Returns the last object's oid, returns int]
  5492. pg_last_oid(|resource result)
  5493. [pg_lo_close | Close a large object, returns bool]
  5494. pg_lo_close(|resource large_object)
  5495. [pg_lo_create | Create a large object, returns int]
  5496. pg_lo_create(|resource connection)
  5497. [pg_lo_export | Export a large object to file, returns bool]
  5498. pg_lo_export(|int oid, string pathname, [resource connection])
  5499. [pg_lo_import | Import a large object from file, returns int]
  5500. pg_lo_import(|[resource connection], string pathname)
  5501. [pg_lo_open | Open a large object, returns resource]
  5502. pg_lo_open(|resource connection, int oid, string mode)
  5503. [pg_lo_read_all | Reads an entire large object and send straight to browser, returns int]
  5504. pg_lo_read_all(|resource large_object)
  5505. [pg_lo_read | Read a large object, returns string]
  5506. pg_lo_read(|resource large_object, int len)
  5507. [pg_lo_seek | Seeks position of large object, returns bool]
  5508. pg_lo_seek(|resource large_object, int offset, [int whence])
  5509. [pg_lo_tell | Returns current position of large object, returns int]
  5510. pg_lo_tell(|resource large_object)
  5511. [pg_lo_unlink | Delete a large object, returns bool]
  5512. pg_lo_unlink(|resource connection, int oid)
  5513. [pg_lo_write | Write a large object, returns int]
  5514. pg_lo_write(|resource large_object, string data)
  5515. [pg_meta_data | Get meta data for table., returns array]
  5516. pg_meta_data(|resource connection, string table_name)
  5517. [pg_num_fields | Returns the number of fields, returns int]
  5518. pg_num_fields(|resource result)
  5519. [pg_num_rows | Returns the number of rows, returns int]
  5520. pg_num_rows(|resource result)
  5521. [pg_options | Get the options associated with the connection, returns string]
  5522. pg_options(|resource connection)
  5523. [pg_pconnect | Open a persistent PostgreSQL connection, returns resource]
  5524. pg_pconnect(|string connection_string)
  5525. [pg_ping | Ping database connection, returns bool]
  5526. pg_ping(|resource connection)
  5527. [pg_port | Return the port number associated with the connection, returns int]
  5528. pg_port(|resource connection)
  5529. [pg_put_line | Send a NULL-terminated string to PostgreSQL backend, returns bool]
  5530. pg_put_line(|[resource connection], string data)
  5531. [pg_query | Execute a query, returns resource]
  5532. pg_query(|resource connection, string query)
  5533. [pg_result_error | Get error message associated with result, returns string]
  5534. pg_result_error(|resource result)
  5535. [pg_result_seek | Set internal row offset in result resource, returns array]
  5536. pg_result_seek(|resource result, int offset)
  5537. [pg_result_status | Get status of query result, returns int]
  5538. pg_result_status(|resource result)
  5539. [pg_select | Select records., returns array]
  5540. pg_select(|resource connection, string table_name, array assoc_array, [int options])
  5541. [pg_send_query | Sends asynchronous query, returns bool]
  5542. pg_send_query(|resource connection, string query)
  5543. [pg_set_client_encoding | Set the client encoding, returns int]
  5544. pg_set_client_encoding(|[resource connection], string encoding)
  5545. [pg_trace | Enable tracing a PostgreSQL connection, returns bool]
  5546. pg_trace(|string pathname, [string mode], [resource connection])
  5547. [pg_tty | Return the tty name associated with the connection, returns string]
  5548. pg_tty(|resource connection)
  5549. [pg_unescape_bytea | Escape binary for bytea type, returns string]
  5550. pg_unescape_bytea(|string data)
  5551. [pg_untrace | Disable tracing of a PostgreSQL connection, returns bool]
  5552. pg_untrace(|[resource connection])
  5553. [pg_update | Update table., returns mixed]
  5554. pg_update(|resource connection, string table_name, array data, array condition, [int options])
  5555. ; -----------------------------------------------------------------------------
  5556. ; PCNTL - Process Control Functions
  5557. ; -----------------------------------------------------------------------------
  5558. [pcntl_exec | Executes specified program in current process space, returns bool]
  5559. pcntl_exec(|string path, [array args], [array envs])
  5560. [pcntl_fork | Forks the currently running process, returns int]
  5561. pcntl_fork()|
  5562. [pcntl_signal | Installs a signal handler, returns bool]
  5563. pcntl_signal(|int signo, callback handle, [bool restart_syscalls])
  5564. [pcntl_waitpid | Waits on or returns the status of a forked child, returns int]
  5565. pcntl_waitpid(|int pid, int &status, int options)
  5566. [pcntl_wexitstatus | Returns the return code of a terminated child, returns int]
  5567. pcntl_wexitstatus(|int status)
  5568. [pcntl_wifexited | Returns TRUE if status code represents a successful exit, returns int]
  5569. pcntl_wifexited(|int status)
  5570. [pcntl_wifsignaled | Returns TRUE if status code represents a termination due to a signal, returns int]
  5571. pcntl_wifsignaled(|int status)
  5572. [pcntl_wifstopped | Returns TRUE if child process is currently stopped, returns int]
  5573. pcntl_wifstopped(|int status)
  5574. [pcntl_wstopsig | Returns the signal which caused the child to stop, returns int]
  5575. pcntl_wstopsig(|int status)
  5576. [pcntl_wtermsig | Returns the signal which caused the child to terminate, returns int]
  5577. pcntl_wtermsig(|int status)
  5578. ; -----------------------------------------------------------------------------
  5579. ; Program Execution - Program Execution functions
  5580. ; -----------------------------------------------------------------------------
  5581. [escapeshellarg | escape a string to be used as a shell argument, returns string]
  5582. escapeshellarg(|string arg)
  5583. [escapeshellcmd | escape shell metacharacters, returns string]
  5584. escapeshellcmd(|string command)
  5585. [exec | Execute an external program, returns string]
  5586. exec(|string command, [array output], [int return_var])
  5587. [passthru | Execute an external program and display raw output, returns void]
  5588. passthru(|string command, [int return_var])
  5589. [proc_close | Close a process opened by proc_open and return the exit code of that process., returns int]
  5590. proc_close(|resource process)
  5591. [proc_get_status | Get information about a process opened by proc_open, returns array]
  5592. proc_get_status(|resource process)
  5593. [proc_nice | Change the priority of the current process, returns bool]
  5594. proc_nice(|int priority)
  5595. [proc_open | Execute a command and open file pointers for input/output, returns resource]
  5596. proc_open(|string cmd, array descriptorspec, array pipes)
  5597. [proc_terminate | kills a process opened by proc_open, returns int]
  5598. proc_terminate(|resource process, [int signal])
  5599. [shell_exec | Execute command via shell and return the complete output as a string, returns string]
  5600. shell_exec(|string cmd)
  5601. [system | Execute an external program and display the output, returns string]
  5602. system(|string command, [int return_var])
  5603. ; -----------------------------------------------------------------------------
  5604. ; Printer - Printer functions
  5605. ; -----------------------------------------------------------------------------
  5606. [printer_abort | Deletes the printer's spool file, returns void]
  5607. printer_abort(|resource handle)
  5608. [printer_close | Close an open printer connection, returns void]
  5609. printer_close(|resource handle)
  5610. [printer_create_brush | Create a new brush, returns mixed]
  5611. printer_create_brush(|int style, string color)
  5612. [printer_create_dc | Create a new device context, returns void]
  5613. printer_create_dc(|resource handle)
  5614. [printer_create_font | Create a new font, returns mixed]
  5615. printer_create_font(|string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton)
  5616. [printer_create_pen | Create a new pen, returns mixed]
  5617. printer_create_pen(|int style, int width, string color)
  5618. [printer_delete_brush | Delete a brush, returns bool]
  5619. printer_delete_brush(|resource handle)
  5620. [printer_delete_dc | Delete a device context, returns bool]
  5621. printer_delete_dc(|resource handle)
  5622. [printer_delete_font | Delete a font, returns bool]
  5623. printer_delete_font(|resource handle)
  5624. [printer_delete_pen | Delete a pen, returns bool]
  5625. printer_delete_pen(|resource handle)
  5626. [printer_draw_bmp | Draw a bmp, returns void]
  5627. printer_draw_bmp(|resource handle, string filename, int x, int y)
  5628. [printer_draw_chord | Draw a chord, returns void]
  5629. printer_draw_chord(|resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1)
  5630. [printer_draw_elipse | Draw an ellipse, returns void]
  5631. printer_draw_elipse(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y)
  5632. [printer_draw_line | Draw a line, returns void]
  5633. printer_draw_line(|resource printer_handle, int from_x, int from_y, int to_x, int to_y)
  5634. [printer_draw_pie | Draw a pie, returns void]
  5635. printer_draw_pie(|resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y)
  5636. [printer_draw_rectangle | Draw a rectangle, returns void]
  5637. printer_draw_rectangle(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y)
  5638. [printer_draw_roundrect | Draw a rectangle with rounded corners, returns void]
  5639. printer_draw_roundrect(|resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height)
  5640. [printer_draw_text | Draw text, returns void]
  5641. printer_draw_text(|resource printer_handle, string text, int x, int y)
  5642. [printer_end_doc | Close document, returns bool]
  5643. printer_end_doc(|resource handle)
  5644. [printer_end_page | Close active page, returns bool]
  5645. printer_end_page(|resource handle)
  5646. [printer_get_option | Retrieve printer configuration data, returns mixed]
  5647. printer_get_option(|resource handle, string option)
  5648. [printer_list | Return an array of printers attached to the server, returns array]
  5649. printer_list(|int enumtype, [string name], [int level])
  5650. [printer_logical_fontheight | Get logical font height, returns int]
  5651. printer_logical_fontheight(|resource handle, int height)
  5652. [printer_open | Open connection to a printer, returns mixed]
  5653. printer_open(|[string devicename])
  5654. [printer_select_brush | Select a brush, returns void]
  5655. printer_select_brush(|resource printer_handle, resource brush_handle)
  5656. [printer_select_font | Select a font, returns void]
  5657. printer_select_font(|resource printer_handle, resource font_handle)
  5658. [printer_select_pen | Select a pen, returns void]
  5659. printer_select_pen(|resource printer_handle, resource pen_handle)
  5660. [printer_set_option | Configure the printer connection, returns bool]
  5661. printer_set_option(|resource handle, int option, mixed value)
  5662. [printer_start_doc | Start a new document, returns bool]
  5663. printer_start_doc(|resource handle, [string document])
  5664. [printer_start_page | Start a new page, returns bool]
  5665. printer_start_page(|resource handle)
  5666. [printer_write | Write data to the printer, returns bool]
  5667. printer_write(|resource handle, string content)
  5668. ; -----------------------------------------------------------------------------
  5669. ; Pspell - Pspell Functions
  5670. ; -----------------------------------------------------------------------------
  5671. [pspell_add_to_personal | Add the word to a personal wordlist, returns int]
  5672. pspell_add_to_personal(|int dictionary_link, string word)
  5673. [pspell_add_to_session | Add the word to the wordlist in the current session, returns int]
  5674. pspell_add_to_session(|int dictionary_link, string word)
  5675. [pspell_check | Check a word, returns bool]
  5676. pspell_check(|int dictionary_link, string word)
  5677. [pspell_clear_session | Clear the current session, returns int]
  5678. pspell_clear_session(|int dictionary_link)
  5679. [pspell_config_create | Create a config used to open a dictionary, returns int]
  5680. pspell_config_create(|string language, [string spelling], [string jargon], [string encoding])
  5681. [pspell_config_ignore | Ignore words less than N characters long, returns int]
  5682. pspell_config_ignore(|int dictionary_link, int n)
  5683. [pspell_config_mode | Change the mode number of suggestions returned, returns int]
  5684. pspell_config_mode(|int dictionary_link, int mode)
  5685. [pspell_config_personal | Set a file that contains personal wordlist, returns int]
  5686. pspell_config_personal(|int dictionary_link, string file)
  5687. [pspell_config_repl | Set a file that contains replacement pairs, returns int]
  5688. pspell_config_repl(|int dictionary_link, string file)
  5689. [pspell_config_runtogether | Consider run-together words as valid compounds, returns int]
  5690. pspell_config_runtogether(|int dictionary_link, bool flag)
  5691. [pspell_config_save_repl | Determine whether to save a replacement pairs list along with the wordlist, returns int]
  5692. pspell_config_save_repl(|int dictionary_link, bool flag)
  5693. [pspell_new_config | Load a new dictionary with settings based on a given config, returns int]
  5694. pspell_new_config(|int config)
  5695. [pspell_new_personal | Load a new dictionary with personal wordlist, returns int]
  5696. pspell_new_personal(|string personal, string language, [string spelling], [string jargon], [string encoding], [int mode])
  5697. [pspell_new | Load a new dictionary, returns int]
  5698. pspell_new(|string language, [string spelling], [string jargon], [string encoding], [int mode])
  5699. [pspell_save_wordlist | Save the personal wordlist to a file, returns int]
  5700. pspell_save_wordlist(|int dictionary_link)
  5701. [pspell_store_replacement | Store a replacement pair for a word, returns int]
  5702. pspell_store_replacement(|int dictionary_link, string misspelled, string correct)
  5703. [pspell_suggest | Suggest spellings of a word, returns array]
  5704. pspell_suggest(|int dictionary_link, string word)
  5705. ; -----------------------------------------------------------------------------
  5706. ; Readline - GNU Readline
  5707. ; -----------------------------------------------------------------------------
  5708. [readline_add_history | Adds a line to the history, returns void]
  5709. readline_add_history(|string line)
  5710. [readline_clear_history | Clears the history, returns bool]
  5711. readline_clear_history()|
  5712. [readline_completion_function | Registers a completion function, returns bool]
  5713. readline_completion_function(|string line)
  5714. [readline_info | Gets/sets various internal readline variables, returns mixed]
  5715. readline_info(|[string varname], [string newvalue])
  5716. [readline_list_history | Lists the history, returns array]
  5717. readline_list_history()|
  5718. [readline_read_history | Reads the history, returns bool]
  5719. readline_read_history(|string filename)
  5720. [readline_write_history | Writes the history, returns bool]
  5721. readline_write_history(|string filename)
  5722. [readline | Reads a line, returns string]
  5723. readline(|[string prompt])
  5724. ; -----------------------------------------------------------------------------
  5725. ; Recode - GNU Recode functions
  5726. ; -----------------------------------------------------------------------------
  5727. [recode_file | Recode from file to file according to recode request, returns bool]
  5728. recode_file(|string request, resource input, resource output)
  5729. [recode_string | Recode a string according to a recode request, returns string]
  5730. recode_string(|string request, string string)
  5731. [recode | Alias for recode_string]
  5732. recode(|)
  5733. ; -----------------------------------------------------------------------------
  5734. ; PCRE - Regular Expression Functions (Perl-Compatible)
  5735. ; -----------------------------------------------------------------------------
  5736. [Pattern Modifiers | Describes possible modifiers in regex patterns]
  5737. [Pattern Syntax | Describes PCRE regex syntax]
  5738. [preg_grep | Return array entries that match the pattern, returns array]
  5739. preg_grep(|string pattern, array input)
  5740. [preg_match_all | Perform a global regular expression match, returns int]
  5741. preg_match_all(|string pattern, string subject, array matches, [int flags])
  5742. [preg_match | Perform a regular expression match, returns int]
  5743. preg_match(|string pattern, string subject, [array matches], [int flags])
  5744. [preg_quote | Quote regular expression characters, returns string]
  5745. preg_quote(|string str, [string delimiter])
  5746. [preg_replace_callback | Perform a regular expression search and replace using a callback, returns mixed]
  5747. preg_replace_callback(|mixed pattern, callback callback, mixed subject, [int limit])
  5748. [preg_replace | Perform a regular expression search and replace, returns mixed]
  5749. preg_replace(|mixed pattern, mixed replacement, mixed subject, [int limit])
  5750. [preg_split | Split string by a regular expression, returns array]
  5751. preg_split(|string pattern, string subject, [int limit], [int flags])
  5752. ; -----------------------------------------------------------------------------
  5753. ; qtdom - qtdom functions
  5754. ; -----------------------------------------------------------------------------
  5755. [qdom_error | Returns the error string from the last QDOM operation or FALSE if no errors occured, returns string]
  5756. qdom_error()|
  5757. [qdom_tree | creates a tree of an xml string, returns object]
  5758. qdom_tree(|string )
  5759. ; -----------------------------------------------------------------------------
  5760. ; Regexps - Regular Expression Functions (POSIX Extended)
  5761. ; -----------------------------------------------------------------------------
  5762. [ereg_replace | Replace regular expression, returns string]
  5763. ereg_replace(|string pattern, string replacement, string string)
  5764. [ereg | Regular expression match, returns bool]
  5765. ereg(|string pattern, string string, [array regs])
  5766. [eregi_replace | replace regular expression case insensitive, returns string]
  5767. eregi_replace(|string pattern, string replacement, string string)
  5768. [eregi | case insensitive regular expression match, returns bool]
  5769. eregi(|string pattern, string string, [array regs])
  5770. [split | split string into array by regular expression, returns array]
  5771. split(|string pattern, string string, [int limit])
  5772. [spliti | Split string into array by regular expression case insensitive, returns array]
  5773. spliti(|string pattern, string string, [int limit])
  5774. [sql_regcase | Make regular expression for case insensitive match, returns string]
  5775. sql_regcase(|string string)
  5776. ; -----------------------------------------------------------------------------
  5777. ; Semaphore - Semaphore, Shared Memory and IPC Functions
  5778. ; -----------------------------------------------------------------------------
  5779. [ftok | Convert a pathname and a project identifier to a System V IPC key, returns int]
  5780. ftok(|string pathname, string proj)
  5781. [msg_get_queue | Create or attach to a message queue, returns int]
  5782. msg_get_queue(|int key, [int perms])
  5783. [msg_receive | Receive a message from a message queue, returns bool]
  5784. msg_receive(|int queue, int desiredmsgtype, int msgtype, int maxsize, mixed message, [bool unserialize], [int flags], [int errorcode])
  5785. [msg_remove_queue | Destroy a message queue, returns bool]
  5786. msg_remove_queue(|int queue)
  5787. [msg_send | Send a message to a message queue, returns bool]
  5788. msg_send(|int queue, int msgtype, mixed message, [bool serialize], [bool blocking], [int errorcode])
  5789. [msg_set_queue | Set information in the message queue data structure, returns bool]
  5790. msg_set_queue(|int queue, array data)
  5791. [msg_stat_queue | Returns information from the message queue data structure, returns array]
  5792. msg_stat_queue(|int queue)
  5793. [sem_acquire | Acquire a semaphore, returns bool]
  5794. sem_acquire(|int sem_identifier)
  5795. [sem_get | Get a semaphore id, returns int]
  5796. sem_get(|int key, [int max_acquire], [int perm])
  5797. [sem_release | Release a semaphore, returns bool]
  5798. sem_release(|int sem_identifier)
  5799. [sem_remove | Remove a semaphore, returns bool]
  5800. sem_remove(|int sem_identifier)
  5801. [shm_attach | Creates or open a shared memory segment, returns int]
  5802. shm_attach(|int key, [int memsize], [int perm])
  5803. [shm_detach | Disconnects from shared memory segment, returns bool]
  5804. shm_detach(|int shm_identifier)
  5805. [shm_get_var | Returns a variable from shared memory, returns mixed]
  5806. shm_get_var(|int id, int variable_key)
  5807. [shm_put_var | Inserts or updates a variable in shared memory, returns int]
  5808. shm_put_var(|int shm_identifier, int variable_key, mixed variable)
  5809. [shm_remove_var | Removes a variable from shared memory, returns int]
  5810. shm_remove_var(|int id, int variable_key)
  5811. [shm_remove | Removes shared memory from Unix systems, returns int]
  5812. shm_remove(|int shm_identifier)
  5813. ; -----------------------------------------------------------------------------
  5814. ; SESAM - SESAM database functions
  5815. ; -----------------------------------------------------------------------------
  5816. [sesam_affected_rows | Get number of rows affected by an immediate query, returns int]
  5817. sesam_affected_rows(|string result_id)
  5818. [sesam_commit | Commit pending updates to the SESAM database, returns bool]
  5819. sesam_commit()|
  5820. [sesam_connect | Open SESAM database connection, returns bool]
  5821. sesam_connect(|string catalog, string schema, string user)
  5822. [sesam_diagnostic | Return status information for last SESAM call, returns array]
  5823. sesam_diagnostic()|
  5824. [sesam_disconnect | Detach from SESAM connection, returns bool]
  5825. sesam_disconnect()|
  5826. [sesam_errormsg | Returns error message of last SESAM call, returns string]
  5827. sesam_errormsg()|
  5828. [sesam_execimm | Execute an "immediate" SQL-statement, returns string]
  5829. sesam_execimm(|string query)
  5830. [sesam_fetch_array | Fetch one row as an associative array, returns array]
  5831. sesam_fetch_array(|string result_id, [int whence], [int offset])
  5832. [sesam_fetch_result | Return all or part of a query result, returns mixed]
  5833. sesam_fetch_result(|string result_id, [int max_rows])
  5834. [sesam_fetch_row | Fetch one row as an array, returns array]
  5835. sesam_fetch_row(|string result_id, [int whence], [int offset])
  5836. [sesam_field_array | Return meta information about individual columns in a result, returns array]
  5837. sesam_field_array(|string result_id)
  5838. [sesam_field_name | Return one column name of the result set, returns int]
  5839. sesam_field_name(|string result_id, int index)
  5840. [sesam_free_result | Releases resources for the query, returns int]
  5841. sesam_free_result(|string result_id)
  5842. [sesam_num_fields | Return the number of fields/columns in a result set, returns int]
  5843. sesam_num_fields(|string result_id)
  5844. [sesam_query | Perform a SESAM SQL query and prepare the result, returns string]
  5845. sesam_query(|string query, [bool scrollable])
  5846. [sesam_rollback | Discard any pending updates to the SESAM database, returns bool]
  5847. sesam_rollback()|
  5848. [sesam_seek_row | Set scrollable cursor mode for subsequent fetches, returns bool]
  5849. sesam_seek_row(|string result_id, int whence, [int offset])
  5850. [sesam_settransaction | Set SESAM transaction parameters, returns bool]
  5851. sesam_settransaction(|int isolation_level, int read_only)
  5852. ; -----------------------------------------------------------------------------
  5853. ; Sessions - Session handling functions
  5854. ; -----------------------------------------------------------------------------
  5855. [session_cache_expire | Return current cache expire, returns int]
  5856. session_cache_expire(|[int new_cache_expire])
  5857. [session_cache_limiter | Get and/or set the current cache limiter, returns string]
  5858. session_cache_limiter(|[string cache_limiter])
  5859. [session_decode | Decodes session data from a string, returns bool]
  5860. session_decode(|string data)
  5861. [session_destroy | Destroys all data registered to a session, returns bool]
  5862. session_destroy()|
  5863. [session_encode | Encodes the current session data as a string, returns string]
  5864. session_encode()|
  5865. [session_get_cookie_params | Get the session cookie parameters, returns array]
  5866. session_get_cookie_params()|
  5867. [session_id | Get and/or set the current session id, returns string]
  5868. session_id(|[string id])
  5869. [session_is_registered | Find out whether a global variable is registered in a session, returns bool]
  5870. session_is_registered(|string name)
  5871. [session_module_name | Get and/or set the current session module, returns string]
  5872. session_module_name(|[string module])
  5873. [session_name | Get and/or set the current session name, returns string]
  5874. session_name(|[string name])
  5875. [session_regenerate_id | Update the current session id with a newly generated one, returns bool]
  5876. session_regenerate_id()|
  5877. [session_register | Register one or more global variables with the current session, returns bool]
  5878. session_register(|mixed name, [mixed ...])
  5879. [session_save_path | Get and/or set the current session save path, returns string]
  5880. session_save_path(|[string path])
  5881. [session_set_cookie_params | Set the session cookie parameters, returns void]
  5882. session_set_cookie_params(|int lifetime, [string path], [string domain], [bool secure])
  5883. [session_set_save_handler | Sets user-level session storage functions, returns bool]
  5884. session_set_save_handler(|string open, string close, string read, string write, string destroy, string gc)
  5885. [session_start | Initialize session data, returns bool]
  5886. session_start()|
  5887. [session_unregister | Unregister a global variable from the current session, returns bool]
  5888. session_unregister(|string name)
  5889. [session_unset | Free all session variables, returns void]
  5890. session_unset()|
  5891. [session_write_close | Write session data and end session, returns void]
  5892. session_write_close()|
  5893. ; -----------------------------------------------------------------------------
  5894. ; shmop - Shared Memory Functions
  5895. ; -----------------------------------------------------------------------------
  5896. [shmop_close | Close shared memory block, returns int]
  5897. shmop_close(|int shmid)
  5898. [shmop_delete | Delete shared memory block, returns int]
  5899. shmop_delete(|int shmid)
  5900. [shmop_open | Create or open shared memory block, returns int]
  5901. shmop_open(|int key, string flags, int mode, int size)
  5902. [shmop_read | Read data from shared memory block, returns string]
  5903. shmop_read(|int shmid, int start, int count)
  5904. [shmop_size | Get size of shared memory block, returns int]
  5905. shmop_size(|int shmid)
  5906. [shmop_write | Write data into shared memory block, returns int]
  5907. shmop_write(|int shmid, string data, int offset)
  5908. ; -----------------------------------------------------------------------------
  5909. ; SQLite - SQLite
  5910. ; -----------------------------------------------------------------------------
  5911. [sqlite_array_query | Execute a query against a given database and returns an array., returns array]
  5912. sqlite_array_query(|resource dbhandle, string query, [int result_type], [bool decode_binary])
  5913. [sqlite_busy_timeout | Set busy timeout duration, or disable busy handlers., returns void]
  5914. sqlite_busy_timeout(|resource dbhandle, int milliseconds)
  5915. [sqlite_changes | Returns the number of rows that were changed by the most recent SQL statement., returns int]
  5916. sqlite_changes(|resource dbhandle)
  5917. [sqlite_close | Closes an open SQLite database., returns void]
  5918. sqlite_close(|resource dbhandle)
  5919. [sqlite_column | Fetches a column from the current row of a result set., returns mixed]
  5920. sqlite_column(|resource result, mixed index_or_name, [bool decode_binary])
  5921. [sqlite_create_aggregate | Register an aggregating UDF for use in SQL statements., returns bool]
  5922. sqlite_create_aggregate(|resource dbhandle, string function_name, mixed step_func, mixed finalize_func, [int num_args])
  5923. [sqlite_create_function | Registers a "regular" User Defined Function for use in SQL statements., returns bool]
  5924. sqlite_create_function(|resource dbhandle, string function_name, mixed callback, [int num_args])
  5925. [sqlite_current | Fetches the current row from a result set as an array., returns array]
  5926. sqlite_current(|resource result, [int result_type], [bool decode_binary])
  5927. [sqlite_error_string | Returns the textual description of an error code., returns string]
  5928. sqlite_error_string(|int error_code)
  5929. [sqlite_escape_string | Escapes a string for use as a query parameter, returns string]
  5930. sqlite_escape_string(|string item)
  5931. [sqlite_fetch_array | Fetches the next row from a result set as an array., returns array]
  5932. sqlite_fetch_array(|resource result, [int result_type], [bool decode_binary])
  5933. [sqlite_fetch_single | Fetches the first column of a result set as a string., returns string]
  5934. sqlite_fetch_single(|resource result, [int result_type], [bool decode_binary])
  5935. [sqlite_fetch_string | Alias of sqlite_fetch_single]
  5936. sqlite_fetch_string(|)
  5937. [sqlite_field_name | Returns the name of a particular field., returns string]
  5938. sqlite_field_name(|resource result, int field_index)
  5939. [sqlite_has_more | Returns whether or not more rows are available., returns bool]
  5940. sqlite_has_more(|resource result)
  5941. [sqlite_last_error | Returns the error code of the last error for a database., returns int]
  5942. sqlite_last_error(|resource dbhandle)
  5943. [sqlite_last_insert_rowid | Returns the rowid of the most recently inserted row., returns int]
  5944. sqlite_last_insert_rowid(|resource dbhandle)
  5945. [sqlite_libencoding | Returns the encoding of the linked SQLite library., returns string]
  5946. sqlite_libencoding()|
  5947. [sqlite_libversion | Returns the version of the linked SQLite library., returns string]
  5948. sqlite_libversion()|
  5949. [sqlite_next | Seek to the next row number., returns bool]
  5950. sqlite_next(|resource result)
  5951. [sqlite_num_fields | Returns the number of fields in a result set., returns int]
  5952. sqlite_num_fields(|resource result)
  5953. [sqlite_num_rows | Returns the number of rows in a buffered result set., returns int]
  5954. sqlite_num_rows(|resource result)
  5955. [sqlite_open | Opens a SQLite database. Will create the database if it does not exist, returns resource]
  5956. sqlite_open(|string filename, [int mode], [string &error_message])
  5957. [sqlite_popen | Opens a persistent handle to an SQLite database. Will create the database if it does not exist., returns resource]
  5958. sqlite_popen(|string filename, [int mode], [string &error_message])
  5959. [sqlite_query | Executes a query against a given database and returns a result handle., returns resource]
  5960. sqlite_query(|resource dbhandle, string query)
  5961. [sqlite_rewind | Seek to the first row number., returns bool]
  5962. sqlite_rewind(|resource result)
  5963. [sqlite_seek | Seek to a particular row number of a buffered result set., returns bool]
  5964. sqlite_seek(|resource result, int rownum)
  5965. [sqlite_udf_decode_binary | Decode binary data passed as parameters to an UDF., returns string]
  5966. sqlite_udf_decode_binary(|string data)
  5967. [sqlite_udf_encode_binary | Encode binary data before returning it from an UDF., returns string]
  5968. sqlite_udf_encode_binary(|string data)
  5969. [sqlite_unbuffered_query | Execute a query that does not prefetch and buffer all data, returns resource]
  5970. sqlite_unbuffered_query(|resource dbhandle, string query)
  5971. ; -----------------------------------------------------------------------------
  5972. ; SWF - Shockwave Flash functions
  5973. ; -----------------------------------------------------------------------------
  5974. [swf_actiongeturl | Get a URL from a Shockwave Flash movie, returns void]
  5975. swf_actiongeturl(|string url, string target)
  5976. [swf_actiongotoframe | Play a frame and then stop, returns void]
  5977. swf_actiongotoframe(|int framenumber)
  5978. [swf_actiongotolabel | Display a frame with the specified label, returns void]
  5979. swf_actiongotolabel(|string label)
  5980. [swf_actionnextframe | Go foward one frame, returns void]
  5981. swf_actionnextframe()|
  5982. [swf_actionplay | Start playing the flash movie from the current frame, returns void]
  5983. swf_actionplay()|
  5984. [swf_actionprevframe | Go backwards one frame, returns void]
  5985. swf_actionprevframe()|
  5986. [swf_actionsettarget | Set the context for actions, returns void]
  5987. swf_actionsettarget(|string target)
  5988. [swf_actionstop | Stop playing the flash movie at the current frame, returns void]
  5989. swf_actionstop()|
  5990. [swf_actiontogglequality | Toggle between low and high quality, returns void]
  5991. swf_actiontogglequality()|
  5992. [swf_actionwaitforframe | Skip actions if a frame has not been loaded, returns void]
  5993. swf_actionwaitforframe(|int framenumber, int skipcount)
  5994. [swf_addbuttonrecord | Controls location, appearance and active area of the current button, returns void]
  5995. swf_addbuttonrecord(|int states, int shapeid, int depth)
  5996. [swf_addcolor | Set the global add color to the rgba value specified, returns void]
  5997. swf_addcolor(|float r, float g, float b, float a)
  5998. [swf_closefile | Close the current Shockwave Flash file, returns void]
  5999. swf_closefile(|[int return_file])
  6000. [swf_definebitmap | Define a bitmap, returns void]
  6001. swf_definebitmap(|int objid, string image_name)
  6002. [swf_definefont | Defines a font, returns void]
  6003. swf_definefont(|int fontid, string fontname)
  6004. [swf_defineline | Define a line, returns void]
  6005. swf_defineline(|int objid, float x1, float y1, float x2, float y2, float width)
  6006. [swf_definepoly | Define a polygon, returns void]
  6007. swf_definepoly(|int objid, array coords, int npoints, float width)
  6008. [swf_definerect | Define a rectangle, returns void]
  6009. swf_definerect(|int objid, float x1, float y1, float x2, float y2, float width)
  6010. [swf_definetext | Define a text string, returns void]
  6011. swf_definetext(|int objid, string str, int docenter)
  6012. [swf_endbutton | End the definition of the current button, returns void]
  6013. swf_endbutton()|
  6014. [swf_enddoaction | End the current action, returns void]
  6015. swf_enddoaction()|
  6016. [swf_endshape | Completes the definition of the current shape, returns void]
  6017. swf_endshape()|
  6018. [swf_endsymbol | End the definition of a symbol, returns void]
  6019. swf_endsymbol()|
  6020. [swf_fontsize | Change the font size, returns void]
  6021. swf_fontsize(|float size)
  6022. [swf_fontslant | Set the font slant, returns void]
  6023. swf_fontslant(|float slant)
  6024. [swf_fonttracking | Set the current font tracking, returns void]
  6025. swf_fonttracking(|float tracking)
  6026. [swf_getbitmapinfo | Get information about a bitmap, returns array]
  6027. swf_getbitmapinfo(|int bitmapid)
  6028. [swf_getfontinfo | The height in pixels of a capital A and a lowercase x, returns array]
  6029. swf_getfontinfo()|
  6030. [swf_getframe | Get the frame number of the current frame, returns int]
  6031. swf_getframe()|
  6032. [swf_labelframe | Label the current frame, returns void]
  6033. swf_labelframe(|string name)
  6034. [swf_lookat | Define a viewing transformation, returns void]
  6035. swf_lookat(|float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist)
  6036. [swf_modifyobject | Modify an object, returns void]
  6037. swf_modifyobject(|int depth, int how)
  6038. [swf_mulcolor | Sets the global multiply color to the rgba value specified, returns void]
  6039. swf_mulcolor(|float r, float g, float b, float a)
  6040. [swf_nextid | Returns the next free object id, returns int]
  6041. swf_nextid()|
  6042. [swf_oncondition | Describe a transition used to trigger an action list, returns void]
  6043. swf_oncondition(|int transition)
  6044. [swf_openfile | Open a new Shockwave Flash file, returns void]
  6045. swf_openfile(|string filename, float width, float height, float framerate, float r, float g, float b)
  6046. [swf_ortho2 | Defines 2D orthographic mapping of user coordinates onto the current viewport, returns void]
  6047. swf_ortho2(|float xmin, float xmax, float ymin, float ymax)
  6048. [swf_ortho | Defines an orthographic mapping of user coordinates onto the current viewport, returns void]
  6049. swf_ortho(|float xmin, float xmax, float ymin, float ymax, float zmin, float zmax)
  6050. [swf_perspective | Define a perspective projection transformation, returns void]
  6051. swf_perspective(|float fovy, float aspect, float near, float far)
  6052. [swf_placeobject | Place an object onto the screen, returns void]
  6053. swf_placeobject(|int objid, int depth)
  6054. [swf_polarview | Define the viewer's position with polar coordinates, returns void]
  6055. swf_polarview(|float dist, float azimuth, float incidence, float twist)
  6056. [swf_popmatrix | Restore a previous transformation matrix, returns void]
  6057. swf_popmatrix()|
  6058. [swf_posround | Enables or Disables the rounding of the translation when objects are placed or moved, returns void]
  6059. swf_posround(|int round)
  6060. [swf_pushmatrix | Push the current transformation matrix back unto the stack, returns void]
  6061. swf_pushmatrix()|
  6062. [swf_removeobject | Remove an object, returns void]
  6063. swf_removeobject(|int depth)
  6064. [swf_rotate | Rotate the current transformation, returns void]
  6065. swf_rotate(|float angle, string axis)
  6066. [swf_scale | Scale the current transformation, returns void]
  6067. swf_scale(|float x, float y, float z)
  6068. [swf_setfont | Change the current font, returns void]
  6069. swf_setfont(|int fontid)
  6070. [swf_setframe | Switch to a specified frame, returns void]
  6071. swf_setframe(|int framenumber)
  6072. [swf_shapearc | Draw a circular arc, returns void]
  6073. swf_shapearc(|float x, float y, float r, float ang1, float ang2)
  6074. [swf_shapecurveto3 | Draw a cubic bezier curve, returns void]
  6075. swf_shapecurveto3(|float x1, float y1, float x2, float y2, float x3, float y3)
  6076. [swf_shapecurveto | Draw a quadratic bezier curve between two points, returns void]
  6077. swf_shapecurveto(|float x1, float y1, float x2, float y2)
  6078. [swf_shapefillbitmapclip | Set current fill mode to clipped bitmap, returns void]
  6079. swf_shapefillbitmapclip(|int bitmapid)
  6080. [swf_shapefillbitmaptile | Set current fill mode to tiled bitmap, returns void]
  6081. swf_shapefillbitmaptile(|int bitmapid)
  6082. [swf_shapefilloff | Turns off filling, returns void]
  6083. swf_shapefilloff()|
  6084. [swf_shapefillsolid | Set the current fill style to the specified color, returns void]
  6085. swf_shapefillsolid(|float r, float g, float b, float a)
  6086. [swf_shapelinesolid | Set the current line style, returns void]
  6087. swf_shapelinesolid(|float r, float g, float b, float a, float width)
  6088. [swf_shapelineto | Draw a line, returns void]
  6089. swf_shapelineto(|float x, float y)
  6090. [swf_shapemoveto | Move the current position, returns void]
  6091. swf_shapemoveto(|float x, float y)
  6092. [swf_showframe | Display the current frame, returns void]
  6093. swf_showframe()|
  6094. [swf_startbutton | Start the definition of a button, returns void]
  6095. swf_startbutton(|int objid, int type)
  6096. [swf_startdoaction | Start a description of an action list for the current frame, returns void]
  6097. swf_startdoaction()|
  6098. [swf_startshape | Start a complex shape, returns void]
  6099. swf_startshape(|int objid)
  6100. [swf_startsymbol | Define a symbol, returns void]
  6101. swf_startsymbol(|int objid)
  6102. [swf_textwidth | Get the width of a string, returns float]
  6103. swf_textwidth(|string str)
  6104. [swf_translate | Translate the current transformations, returns void]
  6105. swf_translate(|float x, float y, float z)
  6106. [swf_viewport | Select an area for future drawing, returns void]
  6107. swf_viewport(|float xmin, float xmax, float ymin, float ymax)
  6108. ; -----------------------------------------------------------------------------
  6109. ; SNMP - SNMP functions
  6110. ; -----------------------------------------------------------------------------
  6111. [snmp_get_quick_print | Fetches the current value of the UCD library's quick_print setting, returns bool]
  6112. snmp_get_quick_print()|
  6113. [snmp_set_quick_print | Set the value of quick_print within the UCD SNMP library, returns void]
  6114. snmp_set_quick_print(|bool quick_print)
  6115. [snmpget | Fetch an SNMP object, returns string]
  6116. snmpget(|string hostname, string community, string object_id, [int timeout], [int retries])
  6117. [snmprealwalk | Return all objects including their respective object ID within the specified one, returns array]
  6118. snmprealwalk(|string host, string community, string object_id, [int timeout], [int retries])
  6119. [snmpset | Set an SNMP object, returns bool]
  6120. snmpset(|string hostname, string community, string object_id, string type, mixed value, [int timeout], [int retries])
  6121. [snmpwalk | Fetch all the SNMP objects from an agent, returns array]
  6122. snmpwalk(|string hostname, string community, string object_id, [int timeout], [int retries])
  6123. [snmpwalkoid | Query for a tree of information about a network entity, returns array]
  6124. snmpwalkoid(|string hostname, string community, string object_id, [int timeout], [int retries])
  6125. ; -----------------------------------------------------------------------------
  6126. ; Sockets - Socket functions
  6127. ; -----------------------------------------------------------------------------
  6128. [socket_accept | Accepts a connection on a socket, returns resource]
  6129. socket_accept(|resource socket)
  6130. [socket_bind | Binds a name to a socket, returns bool]
  6131. socket_bind(|resource socket, string address, [int port])
  6132. [socket_clear_error | Clears the error on the socket or the last error code, returns void]
  6133. socket_clear_error(|[resource socket])
  6134. [socket_close | Closes a socket resource, returns void]
  6135. socket_close(|resource socket)
  6136. [socket_connect | Initiates a connection on a socket, returns bool]
  6137. socket_connect(|resource socket, string address, [int port])
  6138. [socket_create_listen | Opens a socket on port to accept connections, returns resource]
  6139. socket_create_listen(|int port, [int backlog])
  6140. [socket_create_pair | Creates a pair of indistinguishable sockets and stores them in fds., returns bool]
  6141. socket_create_pair(|int domain, int type, int protocol, array &fd)
  6142. [socket_create | Create a socket (endpoint for communication), returns resource]
  6143. socket_create(|int domain, int type, int protocol)
  6144. [socket_get_option | Gets socket options for the socket, returns mixed]
  6145. socket_get_option(|resource socket, int level, int optname)
  6146. [socket_getpeername | Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type., returns bool]
  6147. socket_getpeername(|resource socket, string &addr, [int &port])
  6148. [socket_getsockname | Queries the local side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type., returns bool]
  6149. socket_getsockname(|resource socket, string &addr, [int &port])
  6150. [socket_iovec_add | Adds a new vector to the scatter/gather array, returns bool]
  6151. socket_iovec_add(|resource iovec, int iov_len)
  6152. [socket_iovec_alloc | Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv, returns resource]
  6153. socket_iovec_alloc(|int num_vectors, [int ])
  6154. [socket_iovec_delete | Deletes a vector from an array of vectors, returns bool]
  6155. socket_iovec_delete(|resource iovec, int iov_pos)
  6156. [socket_iovec_fetch | Returns the data held in the iovec specified by iovec_id[iovec_position], returns string]
  6157. socket_iovec_fetch(|resource iovec, int iovec_position)
  6158. [socket_iovec_free | Frees the iovec specified by iovec_id, returns bool]
  6159. socket_iovec_free(|resource iovec)
  6160. [socket_iovec_set | Sets the data held in iovec_id[iovec_position] to new_val, returns bool]
  6161. socket_iovec_set(|resource iovec, int iovec_position, string new_val)
  6162. [socket_last_error | Returns the last error on the socket, returns int]
  6163. socket_last_error(|[resource socket])
  6164. [socket_listen | Listens for a connection on a socket, returns bool]
  6165. socket_listen(|resource socket, [int backlog])
  6166. [socket_read | Reads a maximum of length bytes from a socket, returns string]
  6167. socket_read(|resource socket, int length, [int type])
  6168. [socket_readv | Reads from an fd, using the scatter-gather array defined by iovec_id, returns bool]
  6169. socket_readv(|resource socket, resource iovec_id)
  6170. [socket_recv | Receives data from a connected socket, returns int]
  6171. socket_recv(|resource socket, string &buf, int len, int flags)
  6172. [socket_recvfrom | Receives data from a socket, connected or not, returns int]
  6173. socket_recvfrom(|resource socket, string &buf, int len, int flags, string &name, [int &port])
  6174. [socket_recvmsg | Used to receive messages on a socket, whether connection-oriented or not, returns bool]
  6175. socket_recvmsg(|resource socket, resource iovec, array &control, int &controllen, int &flags, string &addr, [int &port])
  6176. [socket_select | Runs the select() system call on the given arrays of sockets with a specified timeout, returns int]
  6177. socket_select(|array &read, array &write, array &except, int tv_sec, [int tv_usec])
  6178. [socket_send | Sends data to a connected socket, returns int]
  6179. socket_send(|resource socket, string buf, int len, int flags)
  6180. [socket_sendmsg | Sends a message to a socket, regardless of whether it is connection-oriented or not, returns bool]
  6181. socket_sendmsg(|resource socket, resource iovec, int flags, string addr, [int port])
  6182. [socket_sendto | Sends a message to a socket, whether it is connected or not, returns int]
  6183. socket_sendto(|resource socket, string buf, int len, int flags, string addr, [int port])
  6184. [socket_set_block | Sets blocking mode on a socket resource, returns bool]
  6185. socket_set_block(|resource socket)
  6186. [socket_set_nonblock | Sets nonblocking mode for file descriptor fd, returns bool]
  6187. socket_set_nonblock(|resource socket)
  6188. [socket_set_option | Sets socket options for the socket, returns bool]
  6189. socket_set_option(|resource socket, int level, int optname, mixed optval)
  6190. [socket_shutdown | Shuts down a socket for receiving, sending, or both., returns bool]
  6191. socket_shutdown(|resource socket, [int how])
  6192. [socket_strerror | Return a string describing a socket error, returns string]
  6193. socket_strerror(|int errno)
  6194. [socket_write | Write to a socket, returns int]
  6195. socket_write(|resource socket, string buffer, [int length])
  6196. [socket_writev | Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id, returns bool]
  6197. socket_writev(|resource socket, resource iovec_id)
  6198. ; -----------------------------------------------------------------------------
  6199. ; Streams - Stream functions
  6200. ; -----------------------------------------------------------------------------
  6201. [stream_context_create | Create a streams context, returns resource]
  6202. stream_context_create(|array options)
  6203. [stream_context_get_options | Retrieve options for a stream/wrapper/context, returns array]
  6204. stream_context_get_options(|resource stream|context)
  6205. [stream_context_set_option | Sets an option for a stream/wrapper/context, returns bool]
  6206. stream_context_set_option(|resource context|stream, string wrapper, string option, mixed value)
  6207. [stream_context_set_params | Set parameters for a stream/wrapper/context, returns bool]
  6208. stream_context_set_params(|resource stream|context, array params)
  6209. [stream_copy_to_stream | Copies data from one stream to another, returns int]
  6210. stream_copy_to_stream(|resource source, resource dest, [int maxlength])
  6211. [stream_filter_append | Attach a filter to a stream., returns bool]
  6212. stream_filter_append(|resource stream, string filtername, [int read_write], [mixed params])
  6213. [stream_filter_prepend | Attach a filter to a stream., returns bool]
  6214. stream_filter_prepend(|resource stream, string filtername, [int read_write], [mixed params])
  6215. [stream_filter_register | Register a stream filter implemented as a PHP class derived from php_user_filter, returns bool]
  6216. stream_filter_register(|string filtername, string classname)
  6217. [stream_get_filters | Retrieve list of registered filters, returns array]
  6218. stream_get_filters()|
  6219. [stream_get_line | Gets line from stream resource up to a given delimiter, returns string]
  6220. stream_get_line(|resource handle, int length, string ending)
  6221. [stream_get_meta_data | Retrieves header/meta data from streams/file pointers, returns array]
  6222. stream_get_meta_data(|resource stream)
  6223. [stream_get_transports | Retrieve list of registered socket transports, returns array]
  6224. stream_get_transports()|
  6225. [stream_get_wrappers | Retrieve list of registered streams, returns array]
  6226. stream_get_wrappers()|
  6227. [stream_register_wrapper | Alias of stream_wrapper_register]
  6228. stream_register_wrapper(|)
  6229. [stream_select | Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec, returns int]
  6230. stream_select(|resource &read, resource &write, resource &except, int tv_sec, [int tv_usec])
  6231. [stream_set_blocking | Set blocking/non-blocking mode on a stream, returns bool]
  6232. stream_set_blocking(|resource stream, int mode)
  6233. [stream_set_timeout | Set timeout period on a stream, returns bool]
  6234. stream_set_timeout(|resource stream, int seconds, [int microseconds])
  6235. [stream_set_write_buffer | Sets file buffering on the given stream, returns int]
  6236. stream_set_write_buffer(|resource stream, int buffer)
  6237. [stream_socket_accept | Accept a connection on a socket created by stream_socket_server, returns resource]
  6238. stream_socket_accept(|resource server_socket, [int timeout], [string &peername])
  6239. [stream_socket_client | Open Internet or Unix domain socket connection, returns resource]
  6240. stream_socket_client(|string remote_socket, [int &errno], [string &errstr], [float timeout], [int flags], [resource context])
  6241. [stream_socket_get_name | Retrieve the name of the local or remote sockets, returns string]
  6242. stream_socket_get_name(|resource handle, bool want_peer)
  6243. [stream_socket_server | Create an Internet or Unix domain server socket, returns resource]
  6244. stream_socket_server(|string local_socket, [int &errno], [string &errstr], [int flags], [resource context])
  6245. [stream_wrapper_register | Register a URL wrapper implemented as a PHP class, returns bool]
  6246. stream_wrapper_register(|string protocol, string classname)
  6247. ; -----------------------------------------------------------------------------
  6248. ; Strings - String functions
  6249. ; -----------------------------------------------------------------------------
  6250. [addcslashes | Quote string with slashes in a C style, returns string]
  6251. addcslashes(|string str, string charlist)
  6252. [addslashes | Quote string with slashes, returns string]
  6253. addslashes(|string str)
  6254. [bin2hex | Convert binary data into hexadecimal representation, returns string]
  6255. bin2hex(|string str)
  6256. [chop | Alias of rtrim]
  6257. chop(|)
  6258. [chr | Return a specific character, returns string]
  6259. chr(|int ascii)
  6260. [chunk_split | Split a string into smaller chunks, returns string]
  6261. chunk_split(|string body, [int chunklen], [string end])
  6262. [convert_cyr_string | Convert from one Cyrillic character set to another, returns string]
  6263. convert_cyr_string(|string str, string from, string to)
  6264. [count_chars | Return information about characters used in a string, returns mixed]
  6265. count_chars(|string string, [int mode])
  6266. [crc32 | Calculates the crc32 polynomial of a string, returns int]
  6267. crc32(|string str)
  6268. [crypt | One-way string encryption (hashing), returns string]
  6269. crypt(|string str, [string salt])
  6270. [echo | Output one or more strings, returns void]
  6271. echo(|string arg1, [string argn...])
  6272. [explode | Split a string by string, returns array]
  6273. explode(|string separator, string string, [int limit])
  6274. [fprintf | Write a formatted string to a stream, returns int]
  6275. fprintf(|resource handle, string format, [mixed args])
  6276. [get_html_translation_table | Returns the translation table used by htmlspecialchars and htmlentities, returns array]
  6277. get_html_translation_table(|int table, [int quote_style])
  6278. [hebrev | Convert logical Hebrew text to visual text, returns string]
  6279. hebrev(|string hebrew_text, [int max_chars_per_line])
  6280. [hebrevc | Convert logical Hebrew text to visual text with newline conversion, returns string]
  6281. hebrevc(|string hebrew_text, [int max_chars_per_line])
  6282. [html_entity_decode | Convert all HTML entities to their applicable characters, returns string]
  6283. html_entity_decode(|string string, [int quote_style], [string charset])
  6284. [htmlentities | Convert all applicable characters to HTML entities, returns string]
  6285. htmlentities(|string string, [int quote_style], [string charset])
  6286. [htmlspecialchars | Convert special characters to HTML entities, returns string]
  6287. htmlspecialchars(|string string, [int quote_style], [string charset])
  6288. [implode | Join array elements with a string, returns string]
  6289. implode(|string glue, array pieces)
  6290. [join | Alias for implode]
  6291. join(|)
  6292. [levenshtein | Calculate Levenshtein distance between two strings, returns int]
  6293. levenshtein(|string str1, string str2)
  6294. [localeconv | Get numeric formatting information, returns array]
  6295. localeconv()|
  6296. [ltrim | Strip whitespace from the beginning of a string, returns string]
  6297. ltrim(|string str, [string charlist])
  6298. [md5_file | Calculates the md5 hash of a given filename, returns string]
  6299. md5_file(|string filename, [bool raw_output])
  6300. [md5 | Calculate the md5 hash of a string, returns string]
  6301. md5(|string str, [bool raw_output])
  6302. [metaphone | Calculate the metaphone key of a string, returns string]
  6303. metaphone(|string str)
  6304. [money_format | Formats a number as a currency string, returns string]
  6305. money_format(|string format, float number)
  6306. [nl_langinfo | Query language and locale information, returns string]
  6307. nl_langinfo(|int item)
  6308. [nl2br | Inserts HTML line breaks before all newlines in a string, returns string]
  6309. nl2br(|string string)
  6310. [number_format | Format a number with grouped thousands, returns string]
  6311. number_format(|float number, [int decimals])
  6312. [ord | Return ASCII value of character, returns int]
  6313. ord(|string string)
  6314. [parse_str | Parses the string into variables, returns void]
  6315. parse_str(|string str, [array arr])
  6316. [print | Output a string, returns int]
  6317. print(|string arg)
  6318. [printf | Output a formatted string, returns void]
  6319. printf(|string format, [mixed args])
  6320. [quoted_printable_decode | Convert a quoted-printable string to an 8 bit string, returns string]
  6321. quoted_printable_decode(|string str)
  6322. [quotemeta | Quote meta characters, returns string]
  6323. quotemeta(|string str)
  6324. [rtrim | Strip whitespace from the end of a string, returns string]
  6325. rtrim(|string str, [string charlist])
  6326. [setlocale | Set locale information, returns string]
  6327. setlocale(|mixed category, string locale, [string ...])
  6328. [sha1_file | Calculate the sha1 hash of a file, returns string]
  6329. sha1_file(|string filename, [bool raw_output])
  6330. [sha1 | Calculate the sha1 hash of a string, returns string]
  6331. sha1(|string str, [bool raw_output])
  6332. [similar_text | Calculate the similarity between two strings, returns int]
  6333. similar_text(|string first, string second, [float percent])
  6334. [soundex | Calculate the soundex key of a string, returns string]
  6335. soundex(|string str)
  6336. [sprintf | Return a formatted string, returns string]
  6337. sprintf(|string format, [mixed args])
  6338. [sscanf | Parses input from a string according to a format, returns mixed]
  6339. sscanf(|string str, string format, [string var1])
  6340. [str_ireplace | Case-insensitive version of str_replace., returns mixed]
  6341. str_ireplace(|mixed search, mixed replace, mixed subject, [int &count])
  6342. [str_pad | Pad a string to a certain length with another string, returns string]
  6343. str_pad(|string input, int pad_length, [string pad_string], [int pad_type])
  6344. [str_repeat | Repeat a string, returns string]
  6345. str_repeat(|string input, int multiplier)
  6346. [str_replace | Replace all occurrences of the search string with the replacement string, returns mixed]
  6347. str_replace(|mixed search, mixed replace, mixed subject, [int &count])
  6348. [str_rot13 | Perform the rot13 transform on a string, returns string]
  6349. str_rot13(|string str)
  6350. [str_shuffle | Randomly shuffles a string, returns string]
  6351. str_shuffle(|string str)
  6352. [str_split | Convert a string to an array, returns array]
  6353. str_split(|string string, [int split_length])
  6354. [str_word_count | Return information about words used in a string, returns mixed]
  6355. str_word_count(|string string, [int format])
  6356. [strcasecmp | Binary safe case-insensitive string comparison, returns int]
  6357. strcasecmp(|string str1, string str2)
  6358. [strchr | Alias for strstr]
  6359. strchr(|)
  6360. [strcmp | Binary safe string comparison, returns int]
  6361. strcmp(|string str1, string str2)
  6362. [strcoll | Locale based string comparison, returns int]
  6363. strcoll(|string str1, string str2)
  6364. [strcspn | Find length of initial segment not matching mask, returns int]
  6365. strcspn(|string str1, string str2)
  6366. [strip_tags | Strip HTML and PHP tags from a string, returns string]
  6367. strip_tags(|string str, [string allowable_tags])
  6368. [stripcslashes | Un-quote string quoted with addcslashes, returns string]
  6369. stripcslashes(|string str)
  6370. [stripos | Find position of first occurrence of a case-insensitive string, returns int]
  6371. stripos(|string haystack, string needle, [int offset])
  6372. [stripslashes | Un-quote string quoted with addslashes, returns string]
  6373. stripslashes(|string str)
  6374. [stristr | Case-insensitive strstr, returns string]
  6375. stristr(|string haystack, string needle)
  6376. [strlen | Get string length, returns int]
  6377. strlen(|string str)
  6378. [strnatcasecmp | Case insensitive string comparisons using a "natural order" algorithm, returns int]
  6379. strnatcasecmp(|string str1, string str2)
  6380. [strnatcmp | String comparisons using a "natural order" algorithm, returns int]
  6381. strnatcmp(|string str1, string str2)
  6382. [strncasecmp | Binary safe case-insensitive string comparison of the first n characters, returns int]
  6383. strncasecmp(|string str1, string str2, int len)
  6384. [strncmp | Binary safe string comparison of the first n characters, returns int]
  6385. strncmp(|string str1, string str2, int len)
  6386. [strpos | Find position of first occurrence of a string, returns int]
  6387. strpos(|string haystack, string needle, [int offset])
  6388. [strrchr | Find the last occurrence of a character in a string, returns string]
  6389. strrchr(|string haystack, char needle)
  6390. [strrev | Reverse a string, returns string]
  6391. strrev(|string string)
  6392. [strripos | Find position of last occurrence of a case-insensitive string in a string, returns int]
  6393. strripos(|string haystack, string needle)
  6394. [strrpos | Find position of last occurrence of a char in a string, returns int]
  6395. strrpos(|string haystack, string needle)
  6396. [strspn | Find length of initial segment matching mask, returns int]
  6397. strspn(|string str1, string str2)
  6398. [strstr | Find first occurrence of a string, returns string]
  6399. strstr(|string haystack, string needle)
  6400. [strtok | Tokenize string, returns string]
  6401. strtok(|string arg1, string arg2)
  6402. [strtolower | Make a string lowercase, returns string]
  6403. strtolower(|string str)
  6404. [strtoupper | Make a string uppercase, returns string]
  6405. strtoupper(|string string)
  6406. [strtr | Translate certain characters, returns string]
  6407. strtr(|string str, string from, string to)
  6408. [substr_compare | Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters, returns int]
  6409. substr_compare(|string main_str, string str, int offset, [int length], [bool case_sensitivity])
  6410. [substr_count | Count the number of substring occurrences, returns int]
  6411. substr_count(|string haystack, string needle)
  6412. [substr_replace | Replace text within a portion of a string, returns string]
  6413. substr_replace(|string string, string replacement, int start, [int length])
  6414. [substr | Return part of a string, returns string]
  6415. substr(|string string, int start, [int length])
  6416. [trim | Strip whitespace from the beginning and end of a string, returns string]
  6417. trim(|string str, [string charlist])
  6418. [ucfirst | Make a string's first character uppercase, returns string]
  6419. ucfirst(|string str)
  6420. [ucwords | Uppercase the first character of each word in a string, returns string]
  6421. ucwords(|string str)
  6422. [vprintf | Output a formatted string, returns void]
  6423. vprintf(|string format, array args)
  6424. [vsprintf | Return a formatted string, returns string]
  6425. vsprintf(|string format, array args)
  6426. [wordwrap | Wraps a string to a given number of characters using a string break character., returns string]
  6427. wordwrap(|string str, [int width], [string break], [boolean cut])
  6428. ; -----------------------------------------------------------------------------
  6429. ; Sybase - Sybase functions
  6430. ; -----------------------------------------------------------------------------
  6431. [sybase_affected_rows | Gets number of affected rows in last query, returns int]
  6432. sybase_affected_rows(|[resource link_identifier])
  6433. [sybase_close | Closes a Sybase connection, returns bool]
  6434. sybase_close(|[resource link_identifier])
  6435. [sybase_connect | Opens a Sybase server connection, returns resource]
  6436. sybase_connect(|[string servername], [string username], [string password], [string charset], [string appname])
  6437. [sybase_data_seek | Moves internal row pointer, returns bool]
  6438. sybase_data_seek(|resource result_identifier, int row_number)
  6439. [sybase_deadlock_retry_count | Sets the deadlock retry count, returns void]
  6440. sybase_deadlock_retry_count(|int retry_count)
  6441. [sybase_fetch_array | Fetch row as array, returns array]
  6442. sybase_fetch_array(|resource result)
  6443. [sybase_fetch_assoc | Fetch a result row as an associative array, returns array]
  6444. sybase_fetch_assoc(|resource result)
  6445. [sybase_fetch_field | Get field information from a result, returns object]
  6446. sybase_fetch_field(|resource result, [int field_offset])
  6447. [sybase_fetch_object | Fetch a row as an object, returns object]
  6448. sybase_fetch_object(|resource result, [mixed object])
  6449. [sybase_fetch_row | Get a result row as an enumerated array, returns array]
  6450. sybase_fetch_row(|resource result)
  6451. [sybase_field_seek | Sets field offset, returns bool]
  6452. sybase_field_seek(|resource result, int field_offset)
  6453. [sybase_free_result | Frees result memory, returns bool]
  6454. sybase_free_result(|resource result)
  6455. [sybase_get_last_message | Returns the last message from the server, returns string]
  6456. sybase_get_last_message()|
  6457. [sybase_min_client_severity | Sets minimum client severity, returns void]
  6458. sybase_min_client_severity(|int severity)
  6459. [sybase_min_error_severity | Sets minimum error severity, returns void]
  6460. sybase_min_error_severity(|int severity)
  6461. [sybase_min_message_severity | Sets minimum message severity, returns void]
  6462. sybase_min_message_severity(|int severity)
  6463. [sybase_min_server_severity | Sets minimum server severity, returns void]
  6464. sybase_min_server_severity(|int severity)
  6465. [sybase_num_fields | Gets the number of fields in a result set, returns int]
  6466. sybase_num_fields(|resource result)
  6467. [sybase_num_rows | Get number of rows in a result set, returns int]
  6468. sybase_num_rows(|resource result)
  6469. [sybase_pconnect | Open persistent Sybase connection, returns resource]
  6470. sybase_pconnect(|[string servername], [string username], [string password], [string charset], [string appname])
  6471. [sybase_query | Sends a Sybase query, returns resource]
  6472. sybase_query(|string query, resource link_identifier)
  6473. [sybase_result | Get result data, returns string]
  6474. sybase_result(|resource result, int row, mixed field)
  6475. [sybase_select_db | Selects a Sybase database, returns bool]
  6476. sybase_select_db(|string database_name, [resource link_identifier])
  6477. [sybase_set_message_handler | Sets the handler called when a server message is raised, returns bool]
  6478. sybase_set_message_handler(|callback handler)
  6479. [sybase_unbuffered_query | Send a Sybase query and do not block, returns resource]
  6480. sybase_unbuffered_query(|string query, resource link_identifier)
  6481. ; -----------------------------------------------------------------------------
  6482. ; tidy - tidy Functions
  6483. ; -----------------------------------------------------------------------------
  6484. [tidy_access_count | Returns the Number of Tidy accessibility warnings encountered for specified document., returns int]
  6485. tidy_access_count()|
  6486. [tidy_clean_repair | Execute configured cleanup and repair operations on parsed markup, returns bool]
  6487. tidy_clean_repair()|
  6488. [tidy_config_count | Returns the Number of Tidy configuration errors encountered for specified document., returns int]
  6489. tidy_config_count()|
  6490. [tidy_diagnose | Run configured diagnostics on parsed and repaired markup., returns bool]
  6491. tidy_diagnose()|
  6492. [tidy_error_count | Returns the Number of Tidy errors encountered for specified document., returns int]
  6493. tidy_error_count()|
  6494. [tidy_get_body | Returns a TidyNode Object starting from the >BODY< tag of the tidy parse tree, returns TidyNode]
  6495. tidy_get_body(|resource tidy)
  6496. [tidy_get_config | Get current Tidy configuarion, returns array]
  6497. tidy_get_config()|
  6498. [tidy_get_error_buffer | Return warnings and errors which occured parsing the specified document, returns string]
  6499. tidy_get_error_buffer(|[bool detailed])
  6500. [tidy_get_head | Returns a TidyNode Object starting from the >HEAD< tag of the tidy parse tree, returns TidyNode]
  6501. tidy_get_head()|
  6502. [tidy_get_html_ver | Get the Detected HTML version for the specified document., returns int]
  6503. tidy_get_html_ver()|
  6504. [tidy_get_html | Returns a TidyNode Object starting from the >HTML< tag of the tidy parse tree, returns TidyNode]
  6505. tidy_get_html()|
  6506. [tidy_get_output | Return a string representing the parsed tidy markup, returns string]
  6507. tidy_get_output()|
  6508. [tidy_get_release | Get release date (version) for Tidy library, returns string]
  6509. tidy_get_release()|
  6510. [tidy_get_root | Returns a TidyNode Object representing the root of the tidy parse tree, returns TidyNode]
  6511. tidy_get_root()|
  6512. [tidy_get_status | Get status of specfied document., returns int]
  6513. tidy_get_status()|
  6514. [tidy_getopt | Returns the value of the specified configuration option for the tidy document., returns mixed]
  6515. tidy_getopt(|string option)
  6516. [tidy_is_xhtml | Indicates if the document is a generic (non HTML/XHTML) XML document., returns bool]
  6517. tidy_is_xhtml()|
  6518. [tidy_load_config | Load an ASCII Tidy configuration file with the specified encoding, returns void]
  6519. tidy_load_config(|string filename, string encoding)
  6520. [tidy_parse_file | Parse markup in file or URI, returns bool]
  6521. tidy_parse_file(|string file, [bool use_include_path])
  6522. [tidy_parse_string | Parse a document stored in a string, returns bool]
  6523. tidy_parse_string(|string input)
  6524. [tidy_repair_file | Repair a file using an optionally provided configuration file, returns bool]
  6525. tidy_repair_file(|string filename, [string config_file], [bool use_include_path])
  6526. [tidy_repair_string | Repair a string using an optionally provided configuration file, returns bool]
  6527. tidy_repair_string(|string data, [string config_file])
  6528. [tidy_reset_config | Restore Tidy configuration to default values, returns string]
  6529. tidy_reset_config()|
  6530. [tidy_save_config | Save current settings to named file. Only non-default values are written., returns bool]
  6531. tidy_save_config(|string filename)
  6532. [tidy_set_encoding | Set the input/output character encoding for parsing markup. Values include: ascii, latin1, raw, utf8, iso2022, mac, win1252, utf16le, utf16be, utf16, big5 and shiftjis., returns bool]
  6533. tidy_set_encoding(|string encoding)
  6534. [tidy_setopt | Updates the configuration settings for the specified tidy document., returns bool]
  6535. tidy_setopt(|string option, mixed newvalue)
  6536. [tidy_warning_count | Returns the Number of Tidy warnings encountered for specified document., returns int]
  6537. tidy_warning_count()|
  6538. ; -----------------------------------------------------------------------------
  6539. ; Tokenizer - Tokenizer functions
  6540. ; -----------------------------------------------------------------------------
  6541. [token_get_all | Split given source into PHP tokens, returns array]
  6542. token_get_all(|string source)
  6543. [token_name | Get the symbolic name of a given PHP token, returns string]
  6544. token_name(|int token)
  6545. ; -----------------------------------------------------------------------------
  6546. ; URLs - URL Functions
  6547. ; -----------------------------------------------------------------------------
  6548. [base64_decode | Decodes data encoded with MIME base64, returns string]
  6549. base64_decode(|string encoded_data)
  6550. [base64_encode | Encodes data with MIME base64, returns string]
  6551. base64_encode(|string data)
  6552. [get_meta_tags | Extracts all meta tag content attributes from a file and returns an array, returns array]
  6553. get_meta_tags(|string filename, [int use_include_path])
  6554. [http_build_query | Generate url-encoded query string, returns string]
  6555. http_build_query(|array formdata, [string numeric_prefix])
  6556. [parse_url | Parse a URL and return its components, returns array]
  6557. parse_url(|string url)
  6558. [rawurldecode | Decode URL-encoded strings, returns string]
  6559. rawurldecode(|string str)
  6560. [rawurlencode | URL-encode according to RFC 1738, returns string]
  6561. rawurlencode(|string str)
  6562. [urldecode | Decodes URL-encoded string, returns string]
  6563. urldecode(|string str)
  6564. [urlencode | URL-encodes string, returns string]
  6565. urlencode(|string str)
  6566. ; -----------------------------------------------------------------------------
  6567. ; Variables - Variable Functions
  6568. ; -----------------------------------------------------------------------------
  6569. [doubleval | Alias of floatval]
  6570. doubleval(|)
  6571. [empty | Determine whether a variable is empty, returns bool]
  6572. empty(|mixed var)
  6573. [floatval | Get float value of a variable, returns float]
  6574. floatval(|mixed var)
  6575. [get_defined_vars | Returns an array of all defined variables, returns array]
  6576. get_defined_vars()|
  6577. [get_resource_type | Returns the resource type, returns string]
  6578. get_resource_type(|resource handle)
  6579. [gettype | Get the type of a variable, returns string]
  6580. gettype(|mixed var)
  6581. [import_request_variables | Import GET/POST/Cookie variables into the global scope, returns bool]
  6582. import_request_variables(|string types, [string prefix])
  6583. [intval | Get integer value of a variable, returns int]
  6584. intval(|mixed var, [int base])
  6585. [is_array | Finds whether a variable is an array, returns bool]
  6586. is_array(|mixed var)
  6587. [is_bool | Finds out whether a variable is a boolean, returns bool]
  6588. is_bool(|mixed var)
  6589. [is_callable | Verify that the contents of a variable can be called as a function, returns bool]
  6590. is_callable(|mixed var, [bool syntax_only], [string callable_name])
  6591. [is_double | Alias of is_float]
  6592. is_double(|)
  6593. [is_float | Finds whether a variable is a float, returns bool]
  6594. is_float(|mixed var)
  6595. [is_int | Find whether a variable is an integer, returns bool]
  6596. is_int(|mixed var)
  6597. [is_integer | Alias of is_int]
  6598. is_integer(|)
  6599. [is_long | Alias of is_int]
  6600. is_long(|)
  6601. [is_null | Finds whether a variable is NULL, returns bool]
  6602. is_null(|mixed var)
  6603. [is_numeric | Finds whether a variable is a number or a numeric string, returns bool]
  6604. is_numeric(|mixed var)
  6605. [is_object | Finds whether a variable is an object, returns bool]
  6606. is_object(|mixed var)
  6607. [is_real | Alias of is_float]
  6608. is_real(|)
  6609. [is_resource | Finds whether a variable is a resource, returns bool]
  6610. is_resource(|mixed var)
  6611. [is_scalar | Finds whether a variable is a scalar, returns bool]
  6612. is_scalar(|mixed var)
  6613. [is_string | Finds whether a variable is a string, returns bool]
  6614. is_string(|mixed var)
  6615. [isset | Determine whether a variable is set, returns bool]
  6616. isset(|mixed var, [mixed var], [ ...])
  6617. [print_r | Prints human-readable information about a variable, returns bool]
  6618. print_r(|mixed expression, [bool return])
  6619. [serialize | Generates a storable representation of a value, returns string]
  6620. serialize(|mixed value)
  6621. [settype | Set the type of a variable, returns bool]
  6622. settype(|mixed var, string type)
  6623. [strval | Get string value of a variable, returns string]
  6624. strval(|mixed var)
  6625. [unserialize | Creates a PHP value from a stored representation, returns mixed]
  6626. unserialize(|string str, [string callback])
  6627. [unset | Unset a given variable, returns void]
  6628. unset(|mixed var, [mixed var], [ ...])
  6629. [var_dump | Dumps information about a variable, returns void]
  6630. var_dump(|mixed expression, [mixed expression], [ ...])
  6631. [var_export | Outputs or returns a string representation of a variable, returns mixed]
  6632. var_export(|mixed expression, [bool return])
  6633. ; -----------------------------------------------------------------------------
  6634. ; vpopmail - vpopmail functions
  6635. ; -----------------------------------------------------------------------------
  6636. [vpopmail_add_alias_domain_ex | Add alias to an existing virtual domain, returns bool]
  6637. vpopmail_add_alias_domain_ex(|string olddomain, string newdomain)
  6638. [vpopmail_add_alias_domain | Add an alias for a virtual domain, returns bool]
  6639. vpopmail_add_alias_domain(|string domain, string aliasdomain)
  6640. [vpopmail_add_domain_ex | Add a new virtual domain, returns bool]
  6641. vpopmail_add_domain_ex(|string domain, string passwd, [string quota], [string bounce], [bool apop])
  6642. [vpopmail_add_domain | Add a new virtual domain, returns bool]
  6643. vpopmail_add_domain(|string domain, string dir, int uid, int gid)
  6644. [vpopmail_add_user | Add a new user to the specified virtual domain, returns bool]
  6645. vpopmail_add_user(|string user, string domain, string password, [string gecos], [bool apop])
  6646. [vpopmail_alias_add | insert a virtual alias, returns bool]
  6647. vpopmail_alias_add(|string user, string domain, string alias)
  6648. [vpopmail_alias_del_domain | deletes all virtual aliases of a domain, returns bool]
  6649. vpopmail_alias_del_domain(|string domain)
  6650. [vpopmail_alias_del | deletes all virtual aliases of a user, returns bool]
  6651. vpopmail_alias_del(|string user, string domain)
  6652. [vpopmail_alias_get_all | get all lines of an alias for a domain, returns array]
  6653. vpopmail_alias_get_all(|string domain)
  6654. [vpopmail_alias_get | get all lines of an alias for a domain, returns array]
  6655. vpopmail_alias_get(|string alias, string domain)
  6656. [vpopmail_auth_user | Attempt to validate a username/domain/password. Returns true/false, returns bool]
  6657. vpopmail_auth_user(|string user, string domain, string password, [string apop])
  6658. [vpopmail_del_domain_ex | Delete a virtual domain, returns bool]
  6659. vpopmail_del_domain_ex(|string domain)
  6660. [vpopmail_del_domain | Delete a virtual domain, returns bool]
  6661. vpopmail_del_domain(|string domain)
  6662. [vpopmail_del_user | Delete a user from a virtual domain, returns bool]
  6663. vpopmail_del_user(|string user, string domain)
  6664. [vpopmail_error | Get text message for last vpopmail error. Returns string, returns string]
  6665. vpopmail_error()|
  6666. [vpopmail_passwd | Change a virtual user's password, returns bool]
  6667. vpopmail_passwd(|string user, string domain, string password)
  6668. [vpopmail_set_user_quota | Sets a virtual user's quota, returns bool]
  6669. vpopmail_set_user_quota(|string user, string domain, string quota)
  6670. ; -----------------------------------------------------------------------------
  6671. ; W32api - W32api functions
  6672. ; -----------------------------------------------------------------------------
  6673. [w32api_deftype | Defines a type for use with other w32api_functions, returns bool]
  6674. w32api_deftype(|string typename, string member1_type, string member1_name, [string ...], [string ...])
  6675. [w32api_init_dtype | Creates an instance of the data type typename and fills it with the values passed, returns resource]
  6676. w32api_init_dtype(|string typename, mixed value, [mixed ...])
  6677. [w32api_invoke_function | Invokes function funcname with the arguments passed after the function name, returns mixed]
  6678. w32api_invoke_function(|string funcname, mixed argument, [mixed ...])
  6679. [w32api_register_function | Registers function function_name from library with PHP, returns bool]
  6680. w32api_register_function(|string library, string function_name, string return_type)
  6681. [w32api_set_call_method | Sets the calling method used, returns void]
  6682. w32api_set_call_method(|int method)
  6683. ; -----------------------------------------------------------------------------
  6684. ; WDDX - WDDX Functions
  6685. ; -----------------------------------------------------------------------------
  6686. [wddx_add_vars | Add variables to a WDDX packet with the specified ID, returns bool]
  6687. wddx_add_vars(|int packet_id, mixed name_var, [mixed ...])
  6688. [wddx_deserialize | Deserializes a WDDX packet, returns mixed]
  6689. wddx_deserialize(|string packet)
  6690. [wddx_packet_end | Ends a WDDX packet with the specified ID, returns string]
  6691. wddx_packet_end(|int packet_id)
  6692. [wddx_packet_start | Starts a new WDDX packet with structure inside it, returns int]
  6693. wddx_packet_start(|[string comment])
  6694. [wddx_serialize_value | Serialize a single value into a WDDX packet, returns string]
  6695. wddx_serialize_value(|mixed var, [string comment])
  6696. [wddx_serialize_vars | Serialize variables into a WDDX packet, returns string]
  6697. wddx_serialize_vars(|mixed var_name, [mixed ...])
  6698. ; -----------------------------------------------------------------------------
  6699. ; XML - XML parser functions
  6700. ; -----------------------------------------------------------------------------
  6701. [utf8_decode | Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1., returns string]
  6702. utf8_decode(|string data)
  6703. [utf8_encode | encodes an ISO-8859-1 string to UTF-8, returns string]
  6704. utf8_encode(|string data)
  6705. [xml_error_string | get XML parser error string, returns string]
  6706. xml_error_string(|int code)
  6707. [xml_get_current_byte_index | get current byte index for an XML parser, returns int]
  6708. xml_get_current_byte_index(|resource parser)
  6709. [xml_get_current_column_number | Get current column number for an XML parser, returns int]
  6710. xml_get_current_column_number(|resource parser)
  6711. [xml_get_current_line_number | get current line number for an XML parser, returns int]
  6712. xml_get_current_line_number(|resource parser)
  6713. [xml_get_error_code | get XML parser error code, returns int]
  6714. xml_get_error_code(|resource parser)
  6715. [xml_parse_into_struct | Parse XML data into an array structure, returns int]
  6716. xml_parse_into_struct(|resource parser, string data, array &values, [array &index])
  6717. [xml_parse | start parsing an XML document, returns bool]
  6718. xml_parse(|resource parser, string data, [bool is_final])
  6719. [xml_parser_create_ns | Create an XML parser with namespace support, returns resource]
  6720. xml_parser_create_ns(|[string encoding], [string separator])
  6721. [xml_parser_create | create an XML parser, returns resource]
  6722. xml_parser_create(|[string encoding])
  6723. [xml_parser_free | Free an XML parser, returns bool]
  6724. xml_parser_free(|resource parser)
  6725. [xml_parser_get_option | get options from an XML parser, returns mixed]
  6726. xml_parser_get_option(|resource parser, int option)
  6727. [xml_parser_set_option | set options in an XML parser, returns bool]
  6728. xml_parser_set_option(|resource parser, int option, mixed value)
  6729. [xml_set_character_data_handler | set up character data handler, returns bool]
  6730. xml_set_character_data_handler(|resource parser, callback handler)
  6731. [xml_set_default_handler | set up default handler, returns bool]
  6732. xml_set_default_handler(|resource parser, callback handler)
  6733. [xml_set_element_handler | set up start and end element handlers, returns bool]
  6734. xml_set_element_handler(|resource parser, callback start_element_handler, callback end_element_handler)
  6735. [xml_set_end_namespace_decl_handler | Set up character data handler, returns bool]
  6736. xml_set_end_namespace_decl_handler(|resource pind, callback handler)
  6737. [xml_set_external_entity_ref_handler | set up external entity reference handler, returns bool]
  6738. xml_set_external_entity_ref_handler(|resource parser, callback handler)
  6739. [xml_set_notation_decl_handler | set up notation declaration handler, returns bool]
  6740. xml_set_notation_decl_handler(|resource parser, callback handler)
  6741. [xml_set_object | Use XML Parser within an object, returns void]
  6742. xml_set_object(|resource parser, object object)
  6743. [xml_set_processing_instruction_handler | Set up processing instruction (PI) handler, returns bool]
  6744. xml_set_processing_instruction_handler(|resource parser, callback handler)
  6745. [xml_set_start_namespace_decl_handler | Set up character data handler, returns bool]
  6746. xml_set_start_namespace_decl_handler(|resource pind, callback hdl)
  6747. [xml_set_unparsed_entity_decl_handler | Set up unparsed entity declaration handler, returns bool]
  6748. xml_set_unparsed_entity_decl_handler(|resource parser, callback handler)
  6749. ; -----------------------------------------------------------------------------
  6750. ; XML-RPC - XML-RPC functions
  6751. ; -----------------------------------------------------------------------------
  6752. [xmlrpc_decode_request | Decodes XML into native PHP types, returns array]
  6753. xmlrpc_decode_request(|string xml, string &method, [string encoding])
  6754. [xmlrpc_decode | Decodes XML into native PHP types, returns array]
  6755. xmlrpc_decode(|string xml, [string encoding])
  6756. [xmlrpc_encode_request | Generates XML for a method request, returns string]
  6757. xmlrpc_encode_request(|string method, mixed params)
  6758. [xmlrpc_encode | Generates XML for a PHP value, returns string]
  6759. xmlrpc_encode(|mixed value)
  6760. [xmlrpc_get_type | Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings, returns string]
  6761. xmlrpc_get_type(|mixed value)
  6762. [xmlrpc_parse_method_descriptions | Decodes XML into a list of method descriptions, returns array]
  6763. xmlrpc_parse_method_descriptions(|string xml)
  6764. [xmlrpc_server_add_introspection_data | Adds introspection documentation, returns int]
  6765. xmlrpc_server_add_introspection_data(|resource server, array desc)
  6766. [xmlrpc_server_call_method | Parses XML requests and call methods, returns mixed]
  6767. xmlrpc_server_call_method(|resource server, string xml, mixed user_data, [array output_options])
  6768. [xmlrpc_server_create | Creates an xmlrpc server, returns resource]
  6769. xmlrpc_server_create()|
  6770. [xmlrpc_server_destroy | Destroys server resources, returns int]
  6771. xmlrpc_server_destroy(|resource server)
  6772. [xmlrpc_server_register_introspection_callback | Register a PHP function to generate documentation, returns bool]
  6773. xmlrpc_server_register_introspection_callback(|resource server, string function)
  6774. [xmlrpc_server_register_method | Register a PHP function to resource method matching method_name, returns bool]
  6775. xmlrpc_server_register_method(|resource server, string method_name, string function)
  6776. [xmlrpc_set_type | Sets xmlrpc type, base64 or datetime, for a PHP string value, returns bool]
  6777. xmlrpc_set_type(|string value, string type)
  6778. ; -----------------------------------------------------------------------------
  6779. ; XSLT - XSLT functions
  6780. ; -----------------------------------------------------------------------------
  6781. [xslt_create | Create a new XSLT processor, returns resource]
  6782. xslt_create()|
  6783. [xslt_errno | Returns an error number, returns int]
  6784. xslt_errno(|resource xh)
  6785. [xslt_error | Returns an error string, returns mixed]
  6786. xslt_error(|resource xh)
  6787. [xslt_free | Free XSLT processor, returns void]
  6788. xslt_free(|resource xh)
  6789. [xslt_process | Perform an XSLT transformation, returns mixed]
  6790. xslt_process(|resource xh, string xmlcontainer, string xslcontainer, [string resultcontainer], [array arguments], [array parameters])
  6791. [xslt_set_base | Set the base URI for all XSLT transformations, returns void]
  6792. xslt_set_base(|resource xh, string uri)
  6793. [xslt_set_encoding | Set the encoding for the parsing of XML documents, returns void]
  6794. xslt_set_encoding(|resource xh, string encoding)
  6795. [xslt_set_error_handler | Set an error handler for a XSLT processor, returns void]
  6796. xslt_set_error_handler(|resource xh, mixed handler)
  6797. [xslt_set_log | Set the log file to write log messages to, returns void]
  6798. xslt_set_log(|resource xh, mixed log)
  6799. [xslt_set_sax_handler | Set SAX handlers for a XSLT processor, returns void]
  6800. xslt_set_sax_handler(|resource xh, array handlers)
  6801. [xslt_set_sax_handlers | Set the SAX handlers to be called when the XML document gets processed, returns void]
  6802. xslt_set_sax_handlers(|resource processor, array handlers)
  6803. [xslt_set_scheme_handler | Set Scheme handlers for a XSLT processor, returns void]
  6804. xslt_set_scheme_handler(|resource xh, array handlers)
  6805. [xslt_set_scheme_handlers | Set the scheme handlers for the XSLT processor, returns void]
  6806. xslt_set_scheme_handlers(|resource processor, array handlers)
  6807. ; -----------------------------------------------------------------------------
  6808. ; YAZ - YAZ functions
  6809. ; -----------------------------------------------------------------------------
  6810. [yaz_addinfo | Returns additional error information, returns string]
  6811. yaz_addinfo(|resource id)
  6812. [yaz_ccl_conf | Configure CCL parser, returns int]
  6813. yaz_ccl_conf(|resource id, array config)
  6814. [yaz_ccl_parse | Invoke CCL Parser, returns bool]
  6815. yaz_ccl_parse(|resource id, string query, array & result)
  6816. [yaz_close | Close YAZ connection, returns bool]
  6817. yaz_close(|resource id)
  6818. [yaz_connect | Prepares for a connection to a Z39.50 target (server)., returns resource]
  6819. yaz_connect(|string zurl, [mixed options])
  6820. [yaz_database | Specifies the databases within a session, returns bool]
  6821. yaz_database(|resource id, string databases)
  6822. [yaz_element | Specifies Element-Set Name for retrieval, returns bool]
  6823. yaz_element(|resource id, string elementset)
  6824. [yaz_errno | Returns error number, returns int]
  6825. yaz_errno(|resource id)
  6826. [yaz_error | Returns error description, returns string]
  6827. yaz_error(|resource id)
  6828. [yaz_get_option | Returns value of option for connection, returns string]
  6829. yaz_get_option(|resource id, string name)
  6830. [yaz_hits | Returns number of hits for last search, returns int]
  6831. yaz_hits(|resource id)
  6832. [yaz_itemorder | Prepares for Z39.50 Item Order with an ILL-Request package, returns int]
  6833. yaz_itemorder(|resource id, array args)
  6834. [yaz_present | Prepares for retrieval (Z39.50 present)., returns bool]
  6835. yaz_present(|resource id)
  6836. [yaz_range | Specifies the maximum number of records to retrieve, returns bool]
  6837. yaz_range(|resource id, int start, int number)
  6838. [yaz_record | Returns a record, returns string]
  6839. yaz_record(|resource id, int pos, string type)
  6840. [yaz_scan_result | Returns Scan Response result, returns array]
  6841. yaz_scan_result(|resource id, [array & result])
  6842. [yaz_scan | Prepares for a scan, returns int]
  6843. yaz_scan(|resource id, string type, string startterm, [array flags])
  6844. [yaz_schema | Specifies schema for retrieval., returns int]
  6845. yaz_schema(|resource id, string schema)
  6846. [yaz_search | Prepares for a search, returns int]
  6847. yaz_search(|resource id, string type, string query)
  6848. [yaz_set_option | Sets one or more options for connection, returns string]
  6849. yaz_set_option(|resource id, string name, string value)
  6850. [yaz_sort | Sets sorting criteria, returns int]
  6851. yaz_sort(|resource id, string criteria)
  6852. [yaz_syntax | Specifies the preferred record syntax for retrieval., returns int]
  6853. yaz_syntax(|resource id, string syntax)
  6854. [yaz_wait | Wait for Z39.50 requests to complete, returns int]
  6855. yaz_wait(|[array options])
  6856. ; -----------------------------------------------------------------------------
  6857. ; YP/NIS - YP/NIS Functions
  6858. ; -----------------------------------------------------------------------------
  6859. [yp_all | Traverse the map and call a function on each entry, returns void]
  6860. yp_all(|string domain, string map, string callback)
  6861. [yp_cat | Return an array containing the entire map, returns array]
  6862. yp_cat(|string domain, string map)
  6863. [yp_err_string | Returns the error string associated with the given error code, returns string]
  6864. yp_err_string(|int errorcode)
  6865. [yp_errno | Returns the error code of the previous operation, returns int]
  6866. yp_errno()|
  6867. [yp_first | Returns the first key-value pair from the named map, returns array]
  6868. yp_first(|string domain, string map)
  6869. [yp_get_default_domain | Fetches the machine's default NIS domain, returns int]
  6870. yp_get_default_domain()|
  6871. [yp_master | Returns the machine name of the master NIS server for a map, returns string]
  6872. yp_master(|string domain, string map)
  6873. [yp_match | Returns the matched line, returns string]
  6874. yp_match(|string domain, string map, string key)
  6875. [yp_next | Returns the next key-value pair in the named map., returns array]
  6876. yp_next(|string domain, string map, string key)
  6877. [yp_order | Returns the order number for a map, returns int]
  6878. yp_order(|string domain, string map)
  6879. ; -----------------------------------------------------------------------------
  6880. ; Zip - Zip File Functions (Read Only Access)
  6881. ; -----------------------------------------------------------------------------
  6882. [zip_close | Close a Zip File Archive, returns void]
  6883. zip_close(|resource zip)
  6884. [zip_entry_close | Close a Directory Entry, returns void]
  6885. zip_entry_close(|resource zip_entry)
  6886. [zip_entry_compressedsize | Retrieve the Compressed Size of a Directory Entry, returns int]
  6887. zip_entry_compressedsize(|resource zip_entry)
  6888. [zip_entry_compressionmethod | Retrieve the Compression Method of a Directory Entry, returns string]
  6889. zip_entry_compressionmethod(|resource zip_entry)
  6890. [zip_entry_filesize | Retrieve the Actual File Size of a Directory Entry, returns int]
  6891. zip_entry_filesize(|resource zip_entry)
  6892. [zip_entry_name | Retrieve the Name of a Directory Entry, returns string]
  6893. zip_entry_name(|resource zip_entry)
  6894. [zip_entry_open | Open a Directory Entry for Reading, returns bool]
  6895. zip_entry_open(|resource zip, resource zip_entry, [string mode])
  6896. [zip_entry_read | Read From an Open Directory Entry, returns string]
  6897. zip_entry_read(|resource zip_entry, [int length])
  6898. [zip_open | Open a Zip File Archive, returns resource]
  6899. zip_open(|string filename)
  6900. [zip_read | Read Next Entry in a Zip File Archive, returns resource]
  6901. zip_read(|resource zip)
  6902. ; -----------------------------------------------------------------------------
  6903. ; Zlib - Zlib Compression Functions
  6904. ; -----------------------------------------------------------------------------
  6905. [gzclose | Close an open gz-file pointer, returns int]
  6906. gzclose(|resource zp)
  6907. [gzcompress | Compress a string, returns string]
  6908. gzcompress(|string data, [int level])
  6909. [gzdeflate | Deflate a string, returns string]
  6910. gzdeflate(|string data, [int level])
  6911. [gzencode | Create a gzip compressed string, returns string]
  6912. gzencode(|string data, [int level], [int encoding_mode])
  6913. [gzeof | Test for end-of-file on a gz-file pointer, returns int]
  6914. gzeof(|resource zp)
  6915. [gzfile | Read entire gz-file into an array, returns array]
  6916. gzfile(|string filename, [int use_include_path])
  6917. [gzgetc | Get character from gz-file pointer, returns string]
  6918. gzgetc(|resource zp)
  6919. [gzgets | Get line from file pointer, returns string]
  6920. gzgets(|resource zp, int length)
  6921. [gzgetss | Get line from gz-file pointer and strip HTML tags, returns string]
  6922. gzgetss(|resource zp, int length, [string allowable_tags])
  6923. [gzinflate | Inflate a deflated string, returns string]
  6924. gzinflate(|string data, [int length])
  6925. [gzopen | Open gz-file, returns resource]
  6926. gzopen(|string filename, string mode, [int use_include_path])
  6927. [gzpassthru | Output all remaining data on a gz-file pointer, returns int]
  6928. gzpassthru(|resource zp)
  6929. [gzputs | Alias for gzwrite]
  6930. gzputs(|)
  6931. [gzread | Binary-safe gz-file read, returns string]
  6932. gzread(|resource zp, int length)
  6933. [gzrewind | Rewind the position of a gz-file pointer, returns int]
  6934. gzrewind(|resource zp)
  6935. [gzseek | Seek on a gz-file pointer, returns int]
  6936. gzseek(|resource zp, int offset)
  6937. [gztell | Tell gz-file pointer read/write position, returns int]
  6938. gztell(|resource zp)
  6939. [gzuncompress | Uncompress a deflated string, returns string]
  6940. gzuncompress(|string data, [int length])
  6941. [gzwrite | Binary-safe gz-file write, returns int]
  6942. gzwrite(|resource zp, string string, [int length])
  6943. [readgzfile | Output a gz-file, returns int]
  6944. readgzfile(|string filename, [int use_include_path])
  6945. [zlib_get_coding_type | Returns the coding type used for output compression, returns string]
  6946. zlib_get_coding_type()|
  6947. ;
  6948. ;
  6949. ; -----------------------------------------------------------------------------
  6950. ; Tree content
  6951. ; -----------------------------------------------------------------------------
  6952. [Tree content]
  6953. Apache - Apache-specific Functions
  6954.  apache_child_terminate
  6955.  apache_get_version
  6956.  apache_lookup_uri
  6957.  apache_note
  6958.  apache_request_headers
  6959.  apache_response_headers
  6960.  apache_setenv
  6961.  ascii2ebcdic
  6962.  ebcdic2ascii
  6963.  getallheaders
  6964.  virtual
  6965. Arrays - Array Functions
  6966.  array_change_key_case
  6967.  array_chunk
  6968.  array_combine
  6969.  array_count_values
  6970.  array_diff_assoc
  6971.  array_diff_uassoc
  6972.  array_diff
  6973.  array_fill
  6974.  array_filter
  6975.  array_flip
  6976.  array_intersect_assoc
  6977.  array_intersect
  6978.  array_key_exists
  6979.  array_keys
  6980.  array_map
  6981.  array_merge_recursive
  6982.  array_merge
  6983.  array_multisort
  6984.  array_pad
  6985.  array_pop
  6986.  array_push
  6987.  array_rand
  6988.  array_reduce
  6989.  array_reverse
  6990.  array_search
  6991.  array_shift
  6992.  array_slice
  6993.  array_splice
  6994.  array_sum
  6995.  array_udiff_assoc
  6996.  array_udiff_uassoc
  6997.  array_udiff
  6998.  array_unique
  6999.  array_unshift
  7000.  array_values
  7001.  array_walk
  7002.  array
  7003.  arsort
  7004.  asort
  7005.  compact
  7006.  count
  7007.  current
  7008.  each
  7009.  end
  7010.  extract
  7011.  in_array
  7012.  key
  7013.  krsort
  7014.  ksort
  7015.  list
  7016.  natcasesort
  7017.  natsort
  7018.  next
  7019.  pos
  7020.  prev
  7021.  range
  7022.  reset
  7023.  rsort
  7024.  shuffle
  7025.  sizeof
  7026.  sort
  7027.  uasort
  7028.  uksort
  7029.  usort
  7030. Aspell - Aspell functions [deprecated]
  7031.  aspell_check_raw
  7032.  aspell_check
  7033.  aspell_new
  7034.  aspell_suggest
  7035. BC math - BCMath Arbitrary Precision Mathematics Functions
  7036.  bcadd
  7037.  bccomp
  7038.  bcdiv
  7039.  bcmod
  7040.  bcmul
  7041.  bcpow
  7042.  bcpowmod
  7043.  bcscale
  7044.  bcsqrt
  7045.  bcsub
  7046. Bzip2 - Bzip2 Compression Functions
  7047.  bzclose
  7048.  bzcompress
  7049.  bzdecompress
  7050.  bzerrno
  7051.  bzerror
  7052.  bzerrstr
  7053.  bzflush
  7054.  bzopen
  7055.  bzread
  7056.  bzwrite
  7057. Calendar - Calendar functions
  7058.  cal_days_in_month
  7059.  cal_from_jd
  7060.  cal_info
  7061.  cal_to_jd
  7062.  easter_date
  7063.  easter_days
  7064.  FrenchToJD
  7065.  GregorianToJD
  7066.  JDDayOfWeek
  7067.  JDMonthName
  7068.  JDToFrench
  7069.  JDToGregorian
  7070.  jdtojewish
  7071.  JDToJulian
  7072.  jdtounix
  7073.  JewishToJD
  7074.  JulianToJD
  7075.  unixtojd
  7076. CCVS - CCVS API Functions
  7077.  ccvs_add
  7078.  ccvs_auth
  7079.  ccvs_command
  7080.  ccvs_count
  7081.  ccvs_delete
  7082.  ccvs_done
  7083.  ccvs_init
  7084.  ccvs_lookup
  7085.  ccvs_new
  7086.  ccvs_report
  7087.  ccvs_return
  7088.  ccvs_reverse
  7089.  ccvs_sale
  7090.  ccvs_status
  7091.  ccvs_textvalue
  7092.  ccvs_void
  7093. COM - COM support functions for Windows
  7094.  COM
  7095.  VARIANT
  7096.  com_addref
  7097.  com_get
  7098.  com_invoke
  7099.  com_isenum
  7100.  com_load_typelib
  7101.  com_load
  7102.  com_propget
  7103.  com_propput
  7104.  com_propset
  7105.  com_release
  7106.  com_set
  7107. Classes/Objects - Class/Object Functions
  7108.  call_user_method_array
  7109.  call_user_method
  7110.  class_exists
  7111.  get_class_methods
  7112.  get_class_vars
  7113.  get_class
  7114.  get_declared_classes
  7115.  get_object_vars
  7116.  get_parent_class
  7117.  is_a
  7118.  is_subclass_of
  7119.  method_exists
  7120. ClibPDF - ClibPDF functions
  7121.  cpdf_add_annotation
  7122.  cpdf_add_outline
  7123.  cpdf_arc
  7124.  cpdf_begin_text
  7125.  cpdf_circle
  7126.  cpdf_clip
  7127.  cpdf_close
  7128.  cpdf_closepath_fill_stroke
  7129.  cpdf_closepath_stroke
  7130.  cpdf_closepath
  7131.  cpdf_continue_text
  7132.  cpdf_curveto
  7133.  cpdf_end_text
  7134.  cpdf_fill_stroke
  7135.  cpdf_fill
  7136.  cpdf_finalize_page
  7137.  cpdf_finalize
  7138.  cpdf_global_set_document_limits
  7139.  cpdf_import_jpeg
  7140.  cpdf_lineto
  7141.  cpdf_moveto
  7142.  cpdf_newpath
  7143.  cpdf_open
  7144.  cpdf_output_buffer
  7145.  cpdf_page_init
  7146.  cpdf_place_inline_image
  7147.  cpdf_rect
  7148.  cpdf_restore
  7149.  cpdf_rlineto
  7150.  cpdf_rmoveto
  7151.  cpdf_rotate_text
  7152.  cpdf_rotate
  7153.  cpdf_save_to_file
  7154.  cpdf_save
  7155.  cpdf_scale
  7156.  cpdf_set_action_url
  7157.  cpdf_set_char_spacing
  7158.  cpdf_set_creator
  7159.  cpdf_set_current_page
  7160.  cpdf_set_font_directories
  7161.  cpdf_set_font_map_file
  7162.  cpdf_set_font
  7163.  cpdf_set_horiz_scaling
  7164.  cpdf_set_keywords
  7165.  cpdf_set_leading
  7166.  cpdf_set_page_animation
  7167.  cpdf_set_subject
  7168.  cpdf_set_text_matrix
  7169.  cpdf_set_text_pos
  7170.  cpdf_set_text_rendering
  7171.  cpdf_set_text_rise
  7172.  cpdf_set_title
  7173.  cpdf_set_viewer_preferences
  7174.  cpdf_set_word_spacing
  7175.  cpdf_setdash
  7176.  cpdf_setflat
  7177.  cpdf_setgray_fill
  7178.  cpdf_setgray_stroke
  7179.  cpdf_setgray
  7180.  cpdf_setlinecap
  7181.  cpdf_setlinejoin
  7182.  cpdf_setlinewidth
  7183.  cpdf_setmiterlimit
  7184.  cpdf_setrgbcolor_fill
  7185.  cpdf_setrgbcolor_stroke
  7186.  cpdf_setrgbcolor
  7187.  cpdf_show_xy
  7188.  cpdf_show
  7189.  cpdf_stringwidth
  7190.  cpdf_stroke
  7191.  cpdf_text
  7192.  cpdf_translate
  7193. Crack - Crack functions
  7194.  crack_check
  7195.  crack_closedict
  7196.  crack_getlastmessage
  7197.  crack_opendict
  7198. CURL - CURL, Client URL Library Functions
  7199.  curl_close
  7200.  curl_errno
  7201.  curl_error
  7202.  curl_exec
  7203.  curl_getinfo
  7204.  curl_init
  7205.  curl_multi_add_handle
  7206.  curl_multi_close
  7207.  curl_multi_exec
  7208.  curl_multi_getcontent
  7209.  curl_multi_info_read
  7210.  curl_multi_init
  7211.  curl_multi_remove_handle
  7212.  curl_multi_select
  7213.  curl_setopt
  7214.  curl_version
  7215. Cybercash - Cybercash payment functions
  7216.  cybercash_base64_decode
  7217.  cybercash_base64_encode
  7218.  cybercash_decr
  7219.  cybercash_encr
  7220. Cyrus IMAP - Cyrus IMAP administration functions
  7221.  cyrus_authenticate
  7222.  cyrus_bind
  7223.  cyrus_close
  7224.  cyrus_connect
  7225.  cyrus_query
  7226.  cyrus_unbind
  7227. ctype - Character type functions
  7228.  ctype_alnum
  7229.  ctype_alpha
  7230.  ctype_cntrl
  7231.  ctype_digit
  7232.  ctype_graph
  7233.  ctype_lower
  7234.  ctype_print
  7235.  ctype_punct
  7236.  ctype_space
  7237.  ctype_upper
  7238.  ctype_xdigit
  7239. dba - Database (dbm-style) abstraction layer functions
  7240.  dba_close
  7241.  dba_delete
  7242.  dba_exists
  7243.  dba_fetch
  7244.  dba_firstkey
  7245.  dba_handlers
  7246.  dba_insert
  7247.  dba_key_split
  7248.  dba_list
  7249.  dba_nextkey
  7250.  dba_open
  7251.  dba_optimize
  7252.  dba_popen
  7253.  dba_replace
  7254.  dba_sync
  7255. Date/Time - Date and Time functions
  7256.  checkdate
  7257.  date
  7258.  getdate
  7259.  gettimeofday
  7260.  gmdate
  7261.  gmmktime
  7262.  gmstrftime
  7263.  localtime
  7264.  microtime
  7265.  mktime
  7266.  strftime
  7267.  strtotime
  7268.  time
  7269. dBase - dBase functions
  7270.  dbase_add_record
  7271.  dbase_close
  7272.  dbase_create
  7273.  dbase_delete_record
  7274.  dbase_get_header_info
  7275.  dbase_get_record_with_names
  7276.  dbase_get_record
  7277.  dbase_numfields
  7278.  dbase_numrecords
  7279.  dbase_open
  7280.  dbase_pack
  7281.  dbase_replace_record
  7282. DBM - DBM Functions [deprecated]
  7283.  dblist
  7284.  dbmclose
  7285.  dbmdelete
  7286.  dbmexists
  7287.  dbmfetch
  7288.  dbmfirstkey
  7289.  dbminsert
  7290.  dbmnextkey
  7291.  dbmopen
  7292.  dbmreplace
  7293. dbx - dbx functions
  7294.  dbx_close
  7295.  dbx_compare
  7296.  dbx_connect
  7297.  dbx_error
  7298.  dbx_escape_string
  7299.  dbx_fetch_row
  7300.  dbx_query
  7301.  dbx_sort
  7302. DB++ - DB++ Functions
  7303.  dbplus_add
  7304.  dbplus_aql
  7305.  dbplus_chdir
  7306.  dbplus_close
  7307.  dbplus_curr
  7308.  dbplus_errcode
  7309.  dbplus_errno
  7310.  dbplus_find
  7311.  dbplus_first
  7312.  dbplus_flush
  7313.  dbplus_freealllocks
  7314.  dbplus_freelock
  7315.  dbplus_freerlocks
  7316.  dbplus_getlock
  7317.  dbplus_getunique
  7318.  dbplus_info
  7319.  dbplus_last
  7320.  dbplus_lockrel
  7321.  dbplus_next
  7322.  dbplus_open
  7323.  dbplus_prev
  7324.  dbplus_rchperm
  7325.  dbplus_rcreate
  7326.  dbplus_rcrtexact
  7327.  dbplus_rcrtlike
  7328.  dbplus_resolve
  7329.  dbplus_restorepos
  7330.  dbplus_rkeys
  7331.  dbplus_ropen
  7332.  dbplus_rquery
  7333.  dbplus_rrename
  7334.  dbplus_rsecindex
  7335.  dbplus_runlink
  7336.  dbplus_rzap
  7337.  dbplus_savepos
  7338.  dbplus_setindex
  7339.  dbplus_setindexbynumber
  7340.  dbplus_sql
  7341.  dbplus_tcl
  7342.  dbplus_tremove
  7343.  dbplus_undo
  7344.  dbplus_undoprepare
  7345.  dbplus_unlockrel
  7346.  dbplus_unselect
  7347.  dbplus_update
  7348.  dbplus_xlockrel
  7349.  dbplus_xunlockrel
  7350. Direct IO - Direct IO functions
  7351.  dio_close
  7352.  dio_fcntl
  7353.  dio_open
  7354.  dio_read
  7355.  dio_seek
  7356.  dio_stat
  7357.  dio_tcsetattr
  7358.  dio_truncate
  7359.  dio_write
  7360. Directories - Directory functions
  7361.  chdir
  7362.  chroot
  7363.  dir
  7364.  closedir
  7365.  getcwd
  7366.  opendir
  7367.  readdir
  7368.  rewinddir
  7369.  scandir
  7370. DOM XML - DOM XML functions
  7371.  DomAttribute->name
  7372.  DomAttribute->specified
  7373.  DomAttribute->value
  7374.  DomDocument->add_root [deprecated]
  7375.  DomDocument->create_attribute
  7376.  DomDocument->create_cdata_section
  7377.  DomDocument->create_comment
  7378.  DomDocument->create_element_ns
  7379.  DomDocument->create_element
  7380.  DomDocument->create_entity_reference
  7381.  DomDocument->create_processing_instruction
  7382.  DomDocument->create_text_node
  7383.  DomDocument->doctype
  7384.  DomDocument->document_element
  7385.  DomDocument->dump_file
  7386.  DomDocument->dump_mem
  7387.  DomDocument->get_element_by_id
  7388.  DomDocument->get_elements_by_tagname
  7389.  DomDocument->html_dump_mem
  7390.  DomDocument->xinclude
  7391.  DomDocumentType->entities
  7392.  DomDocumentType->internal_subset
  7393.  DomDocumentType->name
  7394.  DomDocumentType->notations
  7395.  DomDocumentType->public_id
  7396.  DomDocumentType->system_id
  7397.  DomElement->get_attribute_node
  7398.  DomElement->get_attribute
  7399.  DomElement->get_elements_by_tagname
  7400.  DomElement->has_attribute
  7401.  DomElement->remove_attribute
  7402.  DomElement->set_attribute
  7403.  DomElement->tagname
  7404.  DomNode->add_namespace
  7405.  DomNode->append_child
  7406.  DomNode->append_sibling
  7407.  DomNode->attributes
  7408.  DomNode->child_nodes
  7409.  DomNode->clone_node
  7410.  DomNode->dump_node
  7411.  DomNode->first_child
  7412.  DomNode->get_content
  7413.  DomNode->has_attributes
  7414.  DomNode->has_child_nodes
  7415.  DomNode->insert_before
  7416.  DomNode->is_blank_node
  7417.  DomNode->last_child
  7418.  DomNode->next_sibling
  7419.  DomNode->node_name
  7420.  DomNode->node_type
  7421.  DomNode->node_value
  7422.  DomNode->owner_document
  7423.  DomNode->parent_node
  7424.  DomNode->prefix
  7425.  DomNode->previous_sibling
  7426.  DomNode->remove_child
  7427.  DomNode->replace_child
  7428.  DomNode->replace_node
  7429.  DomNode->set_content
  7430.  DomNode->set_name
  7431.  DomNode->set_namespace
  7432.  DomNode->unlink_node
  7433.  DomProcessingInstruction->data
  7434.  DomProcessingInstruction->target
  7435.  DomXsltStylesheet->process
  7436.  DomXsltStylesheet->result_dump_file
  7437.  DomXsltStylesheet->result_dump_mem
  7438.  domxml_new_doc
  7439.  domxml_open_file
  7440.  domxml_open_mem
  7441.  domxml_version
  7442.  domxml_xmltree
  7443.  domxml_xslt_stylesheet_doc
  7444.  domxml_xslt_stylesheet_file
  7445.  domxml_xslt_stylesheet
  7446.  xpath_eval_expression
  7447.  xpath_eval
  7448.  xpath_new_context
  7449.  xptr_eval
  7450.  xptr_new_context
  7451. .NET - .NET functions
  7452.  dotnet_load
  7453. Errors and Logging - Error Handling and Logging Functions
  7454.  debug_backtrace
  7455.  debug_print_backtrace
  7456.  error_log
  7457.  error_reporting
  7458.  restore_error_handler
  7459.  set_error_handler
  7460.  trigger_error
  7461.  user_error
  7462. fam - File alteration monitor functions
  7463.  fam_cancel_monitor
  7464.  fam_close
  7465.  fam_monitor_collection
  7466.  fam_monitor_directory
  7467.  fam_monitor_file
  7468.  fam_next_event
  7469.  fam_open
  7470.  fam_pending
  7471.  fam_resume_monitor
  7472.  fam_suspend_monitor
  7473. FrontBase - FrontBase Functions
  7474.  fbsql_affected_rows
  7475.  fbsql_autocommit
  7476.  fbsql_change_user
  7477.  fbsql_close
  7478.  fbsql_commit
  7479.  fbsql_connect
  7480.  fbsql_create_blob
  7481.  fbsql_create_clob
  7482.  fbsql_create_db
  7483.  fbsql_data_seek
  7484.  fbsql_database_password
  7485.  fbsql_database
  7486.  fbsql_db_query
  7487.  fbsql_db_status
  7488.  fbsql_drop_db
  7489.  fbsql_errno
  7490.  fbsql_error
  7491.  fbsql_fetch_array
  7492.  fbsql_fetch_assoc
  7493.  fbsql_fetch_field
  7494.  fbsql_fetch_lengths
  7495.  fbsql_fetch_object
  7496.  fbsql_fetch_row
  7497.  fbsql_field_flags
  7498.  fbsql_field_len
  7499.  fbsql_field_name
  7500.  fbsql_field_seek
  7501.  fbsql_field_table
  7502.  fbsql_field_type
  7503.  fbsql_free_result
  7504.  fbsql_get_autostart_info
  7505.  fbsql_hostname
  7506.  fbsql_insert_id
  7507.  fbsql_list_dbs
  7508.  fbsql_list_fields
  7509.  fbsql_list_tables
  7510.  fbsql_next_result
  7511.  fbsql_num_fields
  7512.  fbsql_num_rows
  7513.  fbsql_password
  7514.  fbsql_pconnect
  7515.  fbsql_query
  7516.  fbsql_read_blob
  7517.  fbsql_read_clob
  7518.  fbsql_result
  7519.  fbsql_rollback
  7520.  fbsql_select_db
  7521.  fbsql_set_lob_mode
  7522.  fbsql_set_transaction
  7523.  fbsql_start_db
  7524.  fbsql_stop_db
  7525.  fbsql_tablename
  7526.  fbsql_username
  7527.  fbsql_warnings
  7528. filePro - filePro functions
  7529.  filepro_fieldcount
  7530.  filepro_fieldname
  7531.  filepro_fieldtype
  7532.  filepro_fieldwidth
  7533.  filepro_retrieve
  7534.  filepro_rowcount
  7535.  filepro
  7536. Filesystem - Filesystem functions
  7537.  basename
  7538.  chgrp
  7539.  chmod
  7540.  chown
  7541.  clearstatcache
  7542.  copy
  7543.  delete
  7544.  dirname
  7545.  disk_free_space
  7546.  disk_total_space
  7547.  diskfreespace
  7548.  fclose
  7549.  feof
  7550.  fflush
  7551.  fgetc
  7552.  fgetcsv
  7553.  fgets
  7554.  fgetss
  7555.  file_exists
  7556.  file_get_contents
  7557.  file_put_contents
  7558.  file
  7559.  fileatime
  7560.  filectime
  7561.  filegroup
  7562.  fileinode
  7563.  filemtime
  7564.  fileowner
  7565.  fileperms
  7566.  filesize
  7567.  filetype
  7568.  flock
  7569.  fnmatch
  7570.  fopen
  7571.  fpassthru
  7572.  fputs
  7573.  fread
  7574.  fscanf
  7575.  fseek
  7576.  fstat
  7577.  ftell
  7578.  ftruncate
  7579.  fwrite
  7580.  glob
  7581.  is_dir
  7582.  is_executable
  7583.  is_file
  7584.  is_link
  7585.  is_readable
  7586.  is_uploaded_file
  7587.  is_writable
  7588.  is_writeable
  7589.  link
  7590.  linkinfo
  7591.  lstat
  7592.  mkdir
  7593.  move_uploaded_file
  7594.  parse_ini_file
  7595.  pathinfo
  7596.  pclose
  7597.  popen
  7598.  readfile
  7599.  readlink
  7600.  realpath
  7601.  rename
  7602.  rewind
  7603.  rmdir
  7604.  set_file_buffer
  7605.  stat
  7606.  symlink
  7607.  tempnam
  7608.  tmpfile
  7609.  touch
  7610.  umask
  7611.  unlink
  7612. FDF - Forms Data Format functions
  7613.  fdf_add_doc_javascript
  7614.  fdf_add_template
  7615.  fdf_close
  7616.  fdf_create
  7617.  fdf_enum_values
  7618.  fdf_errno
  7619.  fdf_error
  7620.  fdf_get_ap
  7621.  fdf_get_attachment
  7622.  fdf_get_encoding
  7623.  fdf_get_file
  7624.  fdf_get_flags
  7625.  fdf_get_opt
  7626.  fdf_get_status
  7627.  fdf_get_value
  7628.  fdf_get_version
  7629.  fdf_header
  7630.  fdf_next_field_name
  7631.  fdf_open_string
  7632.  fdf_open
  7633.  fdf_remove_item
  7634.  fdf_save_string
  7635.  fdf_save
  7636.  fdf_set_ap
  7637.  fdf_set_encoding
  7638.  fdf_set_file
  7639.  fdf_set_flags
  7640.  fdf_set_javascript_action
  7641.  fdf_set_opt
  7642.  fdf_set_status
  7643.  fdf_set_submit_form_action
  7644.  fdf_set_target_frame
  7645.  fdf_set_value
  7646.  fdf_set_version
  7647. FriBiDi - FriBiDi functions
  7648.  fribidi_log2vis
  7649. FTP - FTP functions
  7650.  ftp_alloc
  7651.  ftp_cdup
  7652.  ftp_chdir
  7653.  ftp_chmod
  7654.  ftp_close
  7655.  ftp_connect
  7656.  ftp_delete
  7657.  ftp_exec
  7658.  ftp_fget
  7659.  ftp_fput
  7660.  ftp_get_option
  7661.  ftp_get
  7662.  ftp_login
  7663.  ftp_mdtm
  7664.  ftp_mkdir
  7665.  ftp_nb_continue
  7666.  ftp_nb_fget
  7667.  ftp_nb_fput
  7668.  ftp_nb_get
  7669.  ftp_nb_put
  7670.  ftp_nlist
  7671.  ftp_pasv
  7672.  ftp_put
  7673.  ftp_pwd
  7674.  ftp_quit
  7675.  ftp_raw
  7676.  ftp_rawlist
  7677.  ftp_rename
  7678.  ftp_rmdir
  7679.  ftp_set_option
  7680.  ftp_site
  7681.  ftp_size
  7682.  ftp_ssl_connect
  7683.  ftp_systype
  7684. Function handling - Function Handling functions
  7685.  call_user_func_array
  7686.  call_user_func
  7687.  create_function
  7688.  func_get_arg
  7689.  func_get_args
  7690.  func_num_args
  7691.  function_exists
  7692.  get_defined_functions
  7693.  register_shutdown_function
  7694.  register_tick_function
  7695.  unregister_tick_function
  7696. gettext - Gettext
  7697.  bind_textdomain_codeset
  7698.  bindtextdomain
  7699.  dcgettext
  7700.  dcngettext
  7701.  dgettext
  7702.  dngettext
  7703.  gettext
  7704.  ngettext
  7705.  textdomain
  7706. GMP - GMP functions
  7707.  gmp_abs
  7708.  gmp_add
  7709.  gmp_and
  7710.  gmp_clrbit
  7711.  gmp_cmp
  7712.  gmp_com
  7713.  gmp_div_q
  7714.  gmp_div_qr
  7715.  gmp_div_r
  7716.  gmp_div
  7717.  gmp_divexact
  7718.  gmp_fact
  7719.  gmp_gcd
  7720.  gmp_gcdext
  7721.  gmp_hamdist
  7722.  gmp_init
  7723.  gmp_intval
  7724.  gmp_invert
  7725.  gmp_jacobi
  7726.  gmp_legendre
  7727.  gmp_mod
  7728.  gmp_mul
  7729.  gmp_neg
  7730.  gmp_or
  7731.  gmp_perfect_square
  7732.  gmp_popcount
  7733.  gmp_pow
  7734.  gmp_powm
  7735.  gmp_prob_prime
  7736.  gmp_random
  7737.  gmp_scan0
  7738.  gmp_scan1
  7739.  gmp_setbit
  7740.  gmp_sign
  7741.  gmp_sqrt
  7742.  gmp_sqrtrm
  7743.  gmp_strval
  7744.  gmp_sub
  7745.  gmp_xor
  7746. HTTP - HTTP functions
  7747.  header
  7748.  headers_list
  7749.  headers_sent
  7750.  setcookie
  7751. Hyperwave - Hyperwave functions
  7752.  hw_Array2Objrec
  7753.  hw_changeobject
  7754.  hw_Children
  7755.  hw_ChildrenObj
  7756.  hw_Close
  7757.  hw_Connect
  7758.  hw_connection_info
  7759.  hw_cp
  7760.  hw_Deleteobject
  7761.  hw_DocByAnchor
  7762.  hw_DocByAnchorObj
  7763.  hw_Document_Attributes
  7764.  hw_Document_BodyTag
  7765.  hw_Document_Content
  7766.  hw_Document_SetContent
  7767.  hw_Document_Size
  7768.  hw_dummy
  7769.  hw_EditText
  7770.  hw_Error
  7771.  hw_ErrorMsg
  7772.  hw_Free_Document
  7773.  hw_GetAnchors
  7774.  hw_GetAnchorsObj
  7775.  hw_GetAndLock
  7776.  hw_GetChildColl
  7777.  hw_GetChildCollObj
  7778.  hw_GetChildDocColl
  7779.  hw_GetChildDocCollObj
  7780.  hw_GetObject
  7781.  hw_GetObjectByQuery
  7782.  hw_GetObjectByQueryColl
  7783.  hw_GetObjectByQueryCollObj
  7784.  hw_GetObjectByQueryObj
  7785.  hw_GetParents
  7786.  hw_GetParentsObj
  7787.  hw_getrellink
  7788.  hw_GetRemote
  7789.  hw_getremotechildren
  7790.  hw_GetSrcByDestObj
  7791.  hw_GetText
  7792.  hw_getusername
  7793.  hw_Identify
  7794.  hw_InCollections
  7795.  hw_Info
  7796.  hw_InsColl
  7797.  hw_InsDoc
  7798.  hw_insertanchors
  7799.  hw_InsertDocument
  7800.  hw_InsertObject
  7801.  hw_mapid
  7802.  hw_Modifyobject
  7803.  hw_mv
  7804.  hw_New_Document
  7805.  hw_objrec2array
  7806.  hw_Output_Document
  7807.  hw_pConnect
  7808.  hw_PipeDocument
  7809.  hw_Root
  7810.  hw_setlinkroot
  7811.  hw_stat
  7812.  hw_Unlock
  7813.  hw_Who
  7814. Hyperwave API - Hyperwave API functions
  7815.  hw_api_attribute->key
  7816.  hw_api_attribute->langdepvalue
  7817.  hw_api_attribute->value
  7818.  hw_api_attribute->values
  7819.  hw_api_attribute
  7820.  hw_api->checkin
  7821.  hw_api->checkout
  7822.  hw_api->children
  7823.  hw_api_content->mimetype
  7824.  hw_api_content->read
  7825.  hw_api->content
  7826.  hw_api->copy
  7827.  hw_api->dbstat
  7828.  hw_api->dcstat
  7829.  hw_api->dstanchors
  7830.  hw_api->dstofsrcanchors
  7831.  hw_api_error->count
  7832.  hw_api_error->reason
  7833.  hw_api->find
  7834.  hw_api->ftstat
  7835.  hwapi_hgcsp
  7836.  hw_api->hwstat
  7837.  hw_api->identify
  7838.  hw_api->info
  7839.  hw_api->insert
  7840.  hw_api->insertanchor
  7841.  hw_api->insertcollection
  7842.  hw_api->insertdocument
  7843.  hw_api->link
  7844.  hw_api->lock
  7845.  hw_api->move
  7846.  hw_api_content
  7847.  hw_api_object->assign
  7848.  hw_api_object->attreditable
  7849.  hw_api_object->count
  7850.  hw_api_object->insert
  7851.  hw_api_object
  7852.  hw_api_object->remove
  7853.  hw_api_object->title
  7854.  hw_api_object->value
  7855.  hw_api->object
  7856.  hw_api->objectbyanchor
  7857.  hw_api->parents
  7858.  hw_api_reason->description
  7859.  hw_api_reason->type
  7860.  hw_api->remove
  7861.  hw_api->replace
  7862.  hw_api->setcommitedversion
  7863.  hw_api->srcanchors
  7864.  hw_api->srcsofdst
  7865.  hw_api->unlock
  7866.  hw_api->user
  7867.  hw_api->userlist
  7868. iconv - iconv functions
  7869.  iconv_get_encoding
  7870.  iconv_mime_decode
  7871.  iconv_mime_encode
  7872.  iconv_set_encoding
  7873.  iconv_strlen
  7874.  iconv_strpos
  7875.  iconv_strrpos
  7876.  iconv_substr
  7877.  iconv
  7878.  ob_iconv_handler
  7879. Image - Image functions
  7880.  exif_imagetype
  7881.  exif_read_data
  7882.  exif_thumbnail
  7883.  gd_info
  7884.  getimagesize
  7885.  image_type_to_mime_type
  7886.  image2wbmp
  7887.  imagealphablending
  7888.  imageantialias
  7889.  imagearc
  7890.  imagechar
  7891.  imagecharup
  7892.  imagecolorallocate
  7893.  imagecolorallocatealpha
  7894.  imagecolorat
  7895.  imagecolorclosest
  7896.  imagecolorclosestalpha
  7897.  imagecolorclosesthwb
  7898.  imagecolordeallocate
  7899.  imagecolorexact
  7900.  imagecolorexactalpha
  7901.  imagecolormatch
  7902.  imagecolorresolve
  7903.  imagecolorresolvealpha
  7904.  imagecolorset
  7905.  imagecolorsforindex
  7906.  imagecolorstotal
  7907.  imagecolortransparent
  7908.  imagecopy
  7909.  imagecopymerge
  7910.  imagecopymergegray
  7911.  imagecopyresampled
  7912.  imagecopyresized
  7913.  imagecreate
  7914.  imagecreatefromgd2
  7915.  imagecreatefromgd2part
  7916.  imagecreatefromgd
  7917.  imagecreatefromgif
  7918.  imagecreatefromjpeg
  7919.  imagecreatefrompng
  7920.  imagecreatefromstring
  7921.  imagecreatefromwbmp
  7922.  imagecreatefromxbm
  7923.  imagecreatefromxpm
  7924.  imagecreatetruecolor
  7925.  imagedashedline
  7926.  imagedestroy
  7927.  imageellipse
  7928.  imagefill
  7929.  imagefilledarc
  7930.  imagefilledellipse
  7931.  imagefilledpolygon
  7932.  imagefilledrectangle
  7933.  imagefilltoborder
  7934.  imagefontheight
  7935.  imagefontwidth
  7936.  imageftbbox
  7937.  imagefttext
  7938.  imagegammacorrect
  7939.  imagegd2
  7940.  imagegd
  7941.  imagegif
  7942.  imageinterlace
  7943.  imageistruecolor
  7944.  imagejpeg
  7945.  imageline
  7946.  imageloadfont
  7947.  imagepalettecopy
  7948.  imagepng
  7949.  imagepolygon
  7950.  imagepsbbox
  7951.  imagepscopyfont
  7952.  imagepsencodefont
  7953.  imagepsextendfont
  7954.  imagepsfreefont
  7955.  imagepsloadfont
  7956.  imagepsslantfont
  7957.  imagepstext
  7958.  imagerectangle
  7959.  imagerotate
  7960.  imagesavealpha
  7961.  imagesetbrush
  7962.  imagesetpixel
  7963.  imagesetstyle
  7964.  imagesetthickness
  7965.  imagesettile
  7966.  imagestring
  7967.  imagestringup
  7968.  imagesx
  7969.  imagesy
  7970.  imagetruecolortopalette
  7971.  imagettfbbox
  7972.  imagettftext
  7973.  imagetypes
  7974.  imagewbmp
  7975.  iptcembed
  7976.  iptcparse
  7977.  jpeg2wbmp
  7978.  png2wbmp
  7979.  read_exif_data
  7980. IMAP - IMAP, POP3 and NNTP functions
  7981.  imap_8bit
  7982.  imap_alerts
  7983.  imap_append
  7984.  imap_base64
  7985.  imap_binary
  7986.  imap_body
  7987.  imap_bodystruct
  7988.  imap_check
  7989.  imap_clearflag_full
  7990.  imap_close
  7991.  imap_createmailbox
  7992.  imap_delete
  7993.  imap_deletemailbox
  7994.  imap_errors
  7995.  imap_expunge
  7996.  imap_fetch_overview
  7997.  imap_fetchbody
  7998.  imap_fetchheader
  7999.  imap_fetchstructure
  8000.  imap_get_quota
  8001.  imap_get_quotaroot
  8002.  imap_getacl
  8003.  imap_getmailboxes
  8004.  imap_getsubscribed
  8005.  imap_header
  8006.  imap_headerinfo
  8007.  imap_headers
  8008.  imap_last_error
  8009.  imap_list
  8010.  imap_listmailbox
  8011.  imap_listscan
  8012.  imap_listsubscribed
  8013.  imap_lsub
  8014.  imap_mail_compose
  8015.  imap_mail_copy
  8016.  imap_mail_move
  8017.  imap_mail
  8018.  imap_mailboxmsginfo
  8019.  imap_mime_header_decode
  8020.  imap_msgno
  8021.  imap_num_msg
  8022.  imap_num_recent
  8023.  imap_open
  8024.  imap_ping
  8025.  imap_qprint
  8026.  imap_renamemailbox
  8027.  imap_reopen
  8028.  imap_rfc822_parse_adrlist
  8029.  imap_rfc822_parse_headers
  8030.  imap_rfc822_write_address
  8031.  imap_scanmailbox
  8032.  imap_search
  8033.  imap_set_quota
  8034.  imap_setacl
  8035.  imap_setflag_full
  8036.  imap_sort
  8037.  imap_status
  8038.  imap_subscribe
  8039.  imap_thread
  8040.  imap_timeout
  8041.  imap_uid
  8042.  imap_undelete
  8043.  imap_unsubscribe
  8044.  imap_utf7_decode
  8045.  imap_utf7_encode
  8046.  imap_utf8
  8047. Informix - Informix functions
  8048.  ifx_affected_rows
  8049.  ifx_blobinfile_mode
  8050.  ifx_byteasvarchar
  8051.  ifx_close
  8052.  ifx_connect
  8053.  ifx_copy_blob
  8054.  ifx_create_blob
  8055.  ifx_create_char
  8056.  ifx_do
  8057.  ifx_error
  8058.  ifx_errormsg
  8059.  ifx_fetch_row
  8060.  ifx_fieldproperties
  8061.  ifx_fieldtypes
  8062.  ifx_free_blob
  8063.  ifx_free_char
  8064.  ifx_free_result
  8065.  ifx_get_blob
  8066.  ifx_get_char
  8067.  ifx_getsqlca
  8068.  ifx_htmltbl_result
  8069.  ifx_nullformat
  8070.  ifx_num_fields
  8071.  ifx_num_rows
  8072.  ifx_pconnect
  8073.  ifx_prepare
  8074.  ifx_query
  8075.  ifx_textasvarchar
  8076.  ifx_update_blob
  8077.  ifx_update_char
  8078.  ifxus_close_slob
  8079.  ifxus_create_slob
  8080.  ifxus_free_slob
  8081.  ifxus_open_slob
  8082.  ifxus_read_slob
  8083.  ifxus_seek_slob
  8084.  ifxus_tell_slob
  8085.  ifxus_write_slob
  8086. InterBase - InterBase functions
  8087.  ibase_add_user
  8088.  ibase_affected_rows
  8089.  ibase_blob_add
  8090.  ibase_blob_cancel
  8091.  ibase_blob_close
  8092.  ibase_blob_create
  8093.  ibase_blob_echo
  8094.  ibase_blob_get
  8095.  ibase_blob_import
  8096.  ibase_blob_info
  8097.  ibase_blob_open
  8098.  ibase_close
  8099.  ibase_commit_ret
  8100.  ibase_commit
  8101.  ibase_connect
  8102.  ibase_delete_user
  8103.  ibase_drop_db
  8104.  ibase_errcode
  8105.  ibase_errmsg
  8106.  ibase_execute
  8107.  ibase_fetch_assoc
  8108.  ibase_fetch_object
  8109.  ibase_fetch_row
  8110.  ibase_field_info
  8111.  ibase_free_event_handler
  8112.  ibase_free_query
  8113.  ibase_free_result
  8114.  ibase_gen_id
  8115.  ibase_modify_user
  8116.  ibase_name_result
  8117.  ibase_num_fields
  8118.  ibase_num_params
  8119.  ibase_param_info
  8120.  ibase_pconnect
  8121.  ibase_prepare
  8122.  ibase_query
  8123.  ibase_rollback_ret
  8124.  ibase_rollback
  8125.  ibase_set_event_handler
  8126.  ibase_timefmt
  8127.  ibase_trans
  8128.  ibase_wait_event
  8129. Ingres II - Ingres II functions
  8130.  ingres_autocommit
  8131.  ingres_close
  8132.  ingres_commit
  8133.  ingres_connect
  8134.  ingres_fetch_array
  8135.  ingres_fetch_object
  8136.  ingres_fetch_row
  8137.  ingres_field_length
  8138.  ingres_field_name
  8139.  ingres_field_nullable
  8140.  ingres_field_precision
  8141.  ingres_field_scale
  8142.  ingres_field_type
  8143.  ingres_num_fields
  8144.  ingres_num_rows
  8145.  ingres_pconnect
  8146.  ingres_query
  8147.  ingres_rollback
  8148. IRC Gateway - IRC Gateway Functions
  8149.  ircg_channel_mode
  8150.  ircg_disconnect
  8151.  ircg_fetch_error_msg
  8152.  ircg_get_username
  8153.  ircg_html_encode
  8154.  ircg_ignore_add
  8155.  ircg_ignore_del
  8156.  ircg_is_conn_alive
  8157.  ircg_join
  8158.  ircg_kick
  8159.  ircg_lookup_format_messages
  8160.  ircg_msg
  8161.  ircg_nick
  8162.  ircg_nickname_escape
  8163.  ircg_nickname_unescape
  8164.  ircg_notice
  8165.  ircg_part
  8166.  ircg_pconnect
  8167.  ircg_register_format_messages
  8168.  ircg_set_current
  8169.  ircg_set_file
  8170.  ircg_set_on_die
  8171.  ircg_topic
  8172.  ircg_whois
  8173. Java - PHP / Java Integration
  8174.  java_last_exception_clear
  8175.  java_last_exception_get
  8176. LDAP - LDAP functions
  8177.  ldap_8859_to_t61
  8178.  ldap_add
  8179.  ldap_bind
  8180.  ldap_close
  8181.  ldap_compare
  8182.  ldap_connect
  8183.  ldap_count_entries
  8184.  ldap_delete
  8185.  ldap_dn2ufn
  8186.  ldap_err2str
  8187.  ldap_errno
  8188.  ldap_error
  8189.  ldap_explode_dn
  8190.  ldap_first_attribute
  8191.  ldap_first_entry
  8192.  ldap_first_reference
  8193.  ldap_free_result
  8194.  ldap_get_attributes
  8195.  ldap_get_dn
  8196.  ldap_get_entries
  8197.  ldap_get_option
  8198.  ldap_get_values_len
  8199.  ldap_get_values
  8200.  ldap_list
  8201.  ldap_mod_add
  8202.  ldap_mod_del
  8203.  ldap_mod_replace
  8204.  ldap_modify
  8205.  ldap_next_attribute
  8206.  ldap_next_entry
  8207.  ldap_next_reference
  8208.  ldap_parse_reference
  8209.  ldap_parse_result
  8210.  ldap_read
  8211.  ldap_rename
  8212.  ldap_search
  8213.  ldap_set_option
  8214.  ldap_set_rebind_proc
  8215.  ldap_sort
  8216.  ldap_start_tls
  8217.  ldap_t61_to_8859
  8218.  ldap_unbind
  8219. Mail - Mail functions
  8220.  ezmlm_hash
  8221.  mail
  8222. mailparse - mailparse functions
  8223.  mailparse_determine_best_xfer_encoding
  8224.  mailparse_msg_create
  8225.  mailparse_msg_extract_part_file
  8226.  mailparse_msg_extract_part
  8227.  mailparse_msg_free
  8228.  mailparse_msg_get_part_data
  8229.  mailparse_msg_get_part
  8230.  mailparse_msg_get_structure
  8231.  mailparse_msg_parse_file
  8232.  mailparse_msg_parse
  8233.  mailparse_rfc822_parse_addresses
  8234.  mailparse_stream_encode
  8235.  mailparse_uudecode_all
  8236. Math - Mathematical Functions
  8237.  abs
  8238.  acos
  8239.  acosh
  8240.  asin
  8241.  asinh
  8242.  atan2
  8243.  atan
  8244.  atanh
  8245.  base_convert
  8246.  bindec
  8247.  ceil
  8248.  cos
  8249.  cosh
  8250.  decbin
  8251.  dechex
  8252.  decoct
  8253.  deg2rad
  8254.  exp
  8255.  expm1
  8256.  floor
  8257.  fmod
  8258.  getrandmax
  8259.  hexdec
  8260.  hypot
  8261.  is_finite
  8262.  is_infinite
  8263.  is_nan
  8264.  lcg_value
  8265.  log10
  8266.  log1p
  8267.  log
  8268.  max
  8269.  min
  8270.  mt_getrandmax
  8271.  mt_rand
  8272.  mt_srand
  8273.  octdec
  8274.  pi
  8275.  pow
  8276.  rad2deg
  8277.  rand
  8278.  round
  8279.  sin
  8280.  sinh
  8281.  sqrt
  8282.  srand
  8283.  tan
  8284.  tanh
  8285. Multi-Byte String - Multi-Byte String Functions
  8286.  mb_convert_case
  8287.  mb_convert_encoding
  8288.  mb_convert_kana
  8289.  mb_convert_variables
  8290.  mb_decode_mimeheader
  8291.  mb_decode_numericentity
  8292.  mb_detect_encoding
  8293.  mb_detect_order
  8294.  mb_encode_mimeheader
  8295.  mb_encode_numericentity
  8296.  mb_ereg_match
  8297.  mb_ereg_replace
  8298.  mb_ereg_search_getpos
  8299.  mb_ereg_search_getregs
  8300.  mb_ereg_search_init
  8301.  mb_ereg_search_pos
  8302.  mb_ereg_search_regs
  8303.  mb_ereg_search_setpos
  8304.  mb_ereg_search
  8305.  mb_ereg
  8306.  mb_eregi_replace
  8307.  mb_eregi
  8308.  mb_get_info
  8309.  mb_http_input
  8310.  mb_http_output
  8311.  mb_internal_encoding
  8312.  mb_language
  8313.  mb_output_handler
  8314.  mb_parse_str
  8315.  mb_preferred_mime_name
  8316.  mb_regex_encoding
  8317.  mb_regex_set_options
  8318.  mb_send_mail
  8319.  mb_split
  8320.  mb_strcut
  8321.  mb_strimwidth
  8322.  mb_strlen
  8323.  mb_strpos
  8324.  mb_strrpos
  8325.  mb_strtolower
  8326.  mb_strtoupper
  8327.  mb_strwidth
  8328.  mb_substitute_character
  8329.  mb_substr_count
  8330.  mb_substr
  8331. MCAL - MCAL functions
  8332.  mcal_append_event
  8333.  mcal_close
  8334.  mcal_create_calendar
  8335.  mcal_date_compare
  8336.  mcal_date_valid
  8337.  mcal_day_of_week
  8338.  mcal_day_of_year
  8339.  mcal_days_in_month
  8340.  mcal_delete_calendar
  8341.  mcal_delete_event
  8342.  mcal_event_add_attribute
  8343.  mcal_event_init
  8344.  mcal_event_set_alarm
  8345.  mcal_event_set_category
  8346.  mcal_event_set_class
  8347.  mcal_event_set_description
  8348.  mcal_event_set_end
  8349.  mcal_event_set_recur_daily
  8350.  mcal_event_set_recur_monthly_mday
  8351.  mcal_event_set_recur_monthly_wday
  8352.  mcal_event_set_recur_none
  8353.  mcal_event_set_recur_weekly
  8354.  mcal_event_set_recur_yearly
  8355.  mcal_event_set_start
  8356.  mcal_event_set_title
  8357.  mcal_expunge
  8358.  mcal_fetch_current_stream_event
  8359.  mcal_fetch_event
  8360.  mcal_is_leap_year
  8361.  mcal_list_alarms
  8362.  mcal_list_events
  8363.  mcal_next_recurrence
  8364.  mcal_open
  8365.  mcal_popen
  8366.  mcal_rename_calendar
  8367.  mcal_reopen
  8368.  mcal_snooze
  8369.  mcal_store_event
  8370.  mcal_time_valid
  8371.  mcal_week_of_year
  8372. mcrypt - Mcrypt Encryption Functions
  8373.  mcrypt_cbc
  8374.  mcrypt_cfb
  8375.  mcrypt_create_iv
  8376.  mcrypt_decrypt
  8377.  mcrypt_ecb
  8378.  mcrypt_enc_get_algorithms_name
  8379.  mcrypt_enc_get_block_size
  8380.  mcrypt_enc_get_iv_size
  8381.  mcrypt_enc_get_key_size
  8382.  mcrypt_enc_get_modes_name
  8383.  mcrypt_enc_get_supported_key_sizes
  8384.  mcrypt_enc_is_block_algorithm_mode
  8385.  mcrypt_enc_is_block_algorithm
  8386.  mcrypt_enc_is_block_mode
  8387.  mcrypt_enc_self_test
  8388.  mcrypt_encrypt
  8389.  mcrypt_generic_deinit
  8390.  mcrypt_generic_end
  8391.  mcrypt_generic_init
  8392.  mcrypt_generic
  8393.  mcrypt_get_block_size
  8394.  mcrypt_get_cipher_name
  8395.  mcrypt_get_iv_size
  8396.  mcrypt_get_key_size
  8397.  mcrypt_list_algorithms
  8398.  mcrypt_list_modes
  8399.  mcrypt_module_close
  8400.  mcrypt_module_get_algo_block_size
  8401.  mcrypt_module_get_algo_key_size
  8402.  mcrypt_module_get_supported_key_sizes
  8403.  mcrypt_module_is_block_algorithm_mode
  8404.  mcrypt_module_is_block_algorithm
  8405.  mcrypt_module_is_block_mode
  8406.  mcrypt_module_open
  8407.  mcrypt_module_self_test
  8408.  mcrypt_ofb
  8409.  mdecrypt_generic
  8410. MCVE - MCVE Payment Functions
  8411.  mcve_adduser
  8412.  mcve_adduserarg
  8413.  mcve_bt
  8414.  mcve_checkstatus
  8415.  mcve_chkpwd
  8416.  mcve_chngpwd
  8417.  mcve_completeauthorizations
  8418.  mcve_connect
  8419.  mcve_connectionerror
  8420.  mcve_deleteresponse
  8421.  mcve_deletetrans
  8422.  mcve_deleteusersetup
  8423.  mcve_deluser
  8424.  mcve_destroyconn
  8425.  mcve_destroyengine
  8426.  mcve_disableuser
  8427.  mcve_edituser
  8428.  mcve_enableuser
  8429.  mcve_force
  8430.  mcve_getcell
  8431.  mcve_getcellbynum
  8432.  mcve_getcommadelimited
  8433.  mcve_getheader
  8434.  mcve_getuserarg
  8435.  mcve_getuserparam
  8436.  mcve_gft
  8437.  mcve_gl
  8438.  mcve_gut
  8439.  mcve_initconn
  8440.  mcve_initengine
  8441.  mcve_initusersetup
  8442.  mcve_iscommadelimited
  8443.  mcve_liststats
  8444.  mcve_listusers
  8445.  mcve_maxconntimeout
  8446.  mcve_monitor
  8447.  mcve_numcolumns
  8448.  mcve_numrows
  8449.  mcve_override
  8450.  mcve_parsecommadelimited
  8451.  mcve_ping
  8452.  mcve_preauth
  8453.  mcve_preauthcompletion
  8454.  mcve_qc
  8455.  mcve_responseparam
  8456.  mcve_return
  8457.  mcve_returncode
  8458.  mcve_returnstatus
  8459.  mcve_sale
  8460.  mcve_setblocking
  8461.  mcve_setdropfile
  8462.  mcve_setip
  8463.  mcve_setssl_files
  8464.  mcve_setssl
  8465.  mcve_settimeout
  8466.  mcve_settle
  8467.  mcve_text_avs
  8468.  mcve_text_code
  8469.  mcve_text_cv
  8470.  mcve_transactionauth
  8471.  mcve_transactionavs
  8472.  mcve_transactionbatch
  8473.  mcve_transactioncv
  8474.  mcve_transactionid
  8475.  mcve_transactionitem
  8476.  mcve_transactionssent
  8477.  mcve_transactiontext
  8478.  mcve_transinqueue
  8479.  mcve_transnew
  8480.  mcve_transparam
  8481.  mcve_transsend
  8482.  mcve_ub
  8483.  mcve_uwait
  8484.  mcve_verifyconnection
  8485.  mcve_verifysslcert
  8486.  mcve_void
  8487. mhash - Mhash Functions
  8488.  mhash_count
  8489.  mhash_get_block_size
  8490.  mhash_get_hash_name
  8491.  mhash_keygen_s2k
  8492.  mhash
  8493. Mimetype - Mimetype Functions
  8494.  mime_content_type
  8495. MS SQL Server - Microsoft SQL Server functions
  8496.  mssql_bind
  8497.  mssql_close
  8498.  mssql_connect
  8499.  mssql_data_seek
  8500.  mssql_execute
  8501.  mssql_fetch_array
  8502.  mssql_fetch_assoc
  8503.  mssql_fetch_batch
  8504.  mssql_fetch_field
  8505.  mssql_fetch_object
  8506.  mssql_fetch_row
  8507.  mssql_field_length
  8508.  mssql_field_name
  8509.  mssql_field_seek
  8510.  mssql_field_type
  8511.  mssql_free_result
  8512.  mssql_free_statement
  8513.  mssql_get_last_message
  8514.  mssql_guid_string
  8515.  mssql_init
  8516.  mssql_min_error_severity
  8517.  mssql_min_message_severity
  8518.  mssql_next_result
  8519.  mssql_num_fields
  8520.  mssql_num_rows
  8521.  mssql_pconnect
  8522.  mssql_query
  8523.  mssql_result
  8524.  mssql_rows_affected
  8525.  mssql_select_db
  8526. Ming (flash) - Ming functions for Flash
  8527.  ming_setcubicthreshold
  8528.  ming_setscale
  8529.  ming_useswfversion
  8530.  SWFAction
  8531.  SWFBitmap->getHeight
  8532.  SWFBitmap->getWidth
  8533.  SWFBitmap
  8534.  swfbutton_keypress
  8535.  SWFbutton->addAction
  8536.  SWFbutton->addShape
  8537.  SWFbutton->setAction
  8538.  SWFbutton->setdown
  8539.  SWFbutton->setHit
  8540.  SWFbutton->setOver
  8541.  SWFbutton->setUp
  8542.  SWFbutton
  8543.  SWFDisplayItem->addColor
  8544.  SWFDisplayItem->move
  8545.  SWFDisplayItem->moveTo
  8546.  SWFDisplayItem->multColor
  8547.  SWFDisplayItem->remove
  8548.  SWFDisplayItem->Rotate
  8549.  SWFDisplayItem->rotateTo
  8550.  SWFDisplayItem->scale
  8551.  SWFDisplayItem->scaleTo
  8552.  SWFDisplayItem->setDepth
  8553.  SWFDisplayItem->setName
  8554.  SWFDisplayItem->setRatio
  8555.  SWFDisplayItem->skewX
  8556.  SWFDisplayItem->skewXTo
  8557.  SWFDisplayItem->skewY
  8558.  SWFDisplayItem->skewYTo
  8559.  SWFDisplayItem
  8560.  SWFFill->moveTo
  8561.  SWFFill->rotateTo
  8562.  SWFFill->scaleTo
  8563.  SWFFill->skewXTo
  8564.  SWFFill->skewYTo
  8565.  SWFFill
  8566.  swffont->getwidth
  8567.  SWFFont
  8568.  SWFGradient->addEntry
  8569.  SWFGradient
  8570.  SWFMorph->getshape1
  8571.  SWFMorph->getshape2
  8572.  SWFMorph
  8573.  SWFMovie->add
  8574.  SWFMovie->nextframe
  8575.  SWFMovie->output
  8576.  swfmovie->remove
  8577.  SWFMovie->save
  8578.  SWFMovie->setbackground
  8579.  SWFMovie->setdimension
  8580.  SWFMovie->setframes
  8581.  SWFMovie->setrate
  8582.  SWFMovie->streammp3
  8583.  SWFMovie
  8584.  SWFShape->addFill
  8585.  SWFShape->drawCurve
  8586.  SWFShape->drawCurveTo
  8587.  SWFShape->drawLine
  8588.  SWFShape->drawLineTo
  8589.  SWFShape->movePen
  8590.  SWFShape->movePenTo
  8591.  SWFShape->setLeftFill
  8592.  SWFShape->setLine
  8593.  SWFShape->setRightFill
  8594.  SWFShape
  8595.  swfsprite->add
  8596.  SWFSprite->nextframe
  8597.  SWFSprite->remove
  8598.  SWFSprite->setframes
  8599.  SWFSprite
  8600.  SWFText->addString
  8601.  SWFText->getWidth
  8602.  SWFText->moveTo
  8603.  SWFText->setColor
  8604.  SWFText->setFont
  8605.  SWFText->setHeight
  8606.  SWFText->setSpacing
  8607.  SWFText
  8608.  SWFTextField->addstring
  8609.  SWFTextField->align
  8610.  SWFTextField->setbounds
  8611.  SWFTextField->setcolor
  8612.  SWFTextField->setFont
  8613.  SWFTextField->setHeight
  8614.  SWFTextField->setindentation
  8615.  SWFTextField->setLeftMargin
  8616.  SWFTextField->setLineSpacing
  8617.  SWFTextField->setMargins
  8618.  SWFTextField->setname
  8619.  SWFTextField->setrightMargin
  8620.  SWFTextField
  8621. Misc. - Miscellaneous functions
  8622.  connection_aborted
  8623.  connection_status
  8624.  connection_timeout
  8625.  constant
  8626.  define
  8627.  defined
  8628.  die
  8629.  eval
  8630.  exit
  8631.  get_browser
  8632.  highlight_file
  8633.  highlight_string
  8634.  ignore_user_abort
  8635.  pack
  8636.  show_source
  8637.  sleep
  8638.  uniqid
  8639.  unpack
  8640.  usleep
  8641. mnoGoSearch - mnoGoSearch Functions
  8642.  udm_add_search_limit
  8643.  udm_alloc_agent
  8644.  udm_api_version
  8645.  udm_cat_list
  8646.  udm_cat_path
  8647.  udm_check_charset
  8648.  udm_check_stored
  8649.  udm_clear_search_limits
  8650.  udm_close_stored
  8651.  udm_crc32
  8652.  udm_errno
  8653.  udm_error
  8654.  udm_find
  8655.  udm_free_agent
  8656.  udm_free_ispell_data
  8657.  udm_free_res
  8658.  udm_get_doc_count
  8659.  udm_get_res_field
  8660.  udm_get_res_param
  8661.  udm_load_ispell_data
  8662.  udm_open_stored
  8663.  udm_set_agent_param
  8664. mSQL - mSQL functions
  8665.  msql_affected_rows
  8666.  msql_close
  8667.  msql_connect
  8668.  msql_create_db
  8669.  msql_createdb
  8670.  msql_data_seek
  8671.  msql_dbname
  8672.  msql_drop_db
  8673.  msql_dropdb
  8674.  msql_error
  8675.  msql_fetch_array
  8676.  msql_fetch_field
  8677.  msql_fetch_object
  8678.  msql_fetch_row
  8679.  msql_field_seek
  8680.  msql_fieldflags
  8681.  msql_fieldlen
  8682.  msql_fieldname
  8683.  msql_fieldtable
  8684.  msql_fieldtype
  8685.  msql_free_result
  8686.  msql_freeresult
  8687.  msql_list_dbs
  8688.  msql_list_fields
  8689.  msql_list_tables
  8690.  msql_listdbs
  8691.  msql_listfields
  8692.  msql_listtables
  8693.  msql_num_fields
  8694.  msql_num_rows
  8695.  msql_numfields
  8696.  msql_numrows
  8697.  msql_pconnect
  8698.  msql_query
  8699.  msql_regcase
  8700.  msql_result
  8701.  msql_select_db
  8702.  msql_selectdb
  8703.  msql_tablename
  8704.  msql
  8705. MySQL - MySQL Functions
  8706.  mysql_affected_rows
  8707.  mysql_change_user
  8708.  mysql_client_encoding
  8709.  mysql_close
  8710.  mysql_connect
  8711.  mysql_create_db
  8712.  mysql_data_seek
  8713.  mysql_db_name
  8714.  mysql_db_query
  8715.  mysql_drop_db
  8716.  mysql_errno
  8717.  mysql_error
  8718.  mysql_escape_string
  8719.  mysql_fetch_array
  8720.  mysql_fetch_assoc
  8721.  mysql_fetch_field
  8722.  mysql_fetch_lengths
  8723.  mysql_fetch_object
  8724.  mysql_fetch_row
  8725.  mysql_field_flags
  8726.  mysql_field_len
  8727.  mysql_field_name
  8728.  mysql_field_seek
  8729.  mysql_field_table
  8730.  mysql_field_type
  8731.  mysql_free_result
  8732.  mysql_get_client_info
  8733.  mysql_get_host_info
  8734.  mysql_get_proto_info
  8735.  mysql_get_server_info
  8736.  mysql_info
  8737.  mysql_insert_id
  8738.  mysql_list_dbs
  8739.  mysql_list_fields
  8740.  mysql_list_processes
  8741.  mysql_list_tables
  8742.  mysql_num_fields
  8743.  mysql_num_rows
  8744.  mysql_pconnect
  8745.  mysql_ping
  8746.  mysql_query
  8747.  mysql_real_escape_string
  8748.  mysql_result
  8749.  mysql_select_db
  8750.  mysql_stat
  8751.  mysql_tablename
  8752.  mysql_thread_id
  8753.  mysql_unbuffered_query
  8754. mysqli - Improved MySQL Extension
  8755.  mysqli_affected_rows
  8756.  mysqli_autocommit
  8757.  mysqli_bind_param
  8758.  mysqli_bind_result
  8759.  mysqli_change_user
  8760.  mysqli_character_set_name
  8761.  mysqli_close
  8762.  mysqli_commit
  8763.  mysqli_connect
  8764.  mysqli_data_seek
  8765.  mysqli_debug
  8766.  mysqli_disable_reads_from_master
  8767.  mysqli_disable_rpl_parse
  8768.  mysqli_dump_debug_info
  8769.  mysqli_enable_reads_from_master
  8770.  mysqli_enable_rpl_parse
  8771.  mysqli_errno
  8772.  mysqli_error
  8773.  mysqli_execute
  8774.  mysqli_fetch_array
  8775.  mysqli_fetch_assoc
  8776.  mysqli_fetch_field_direct
  8777.  mysqli_fetch_field
  8778.  mysqli_fetch_fields
  8779.  mysqli_fetch_lengths
  8780.  mysqli_fetch_object
  8781.  mysqli_fetch_row
  8782.  mysqli_fetch
  8783.  mysqli_field_count
  8784.  mysqli_field_seek
  8785.  mysqli_field_tell
  8786.  mysqli_free_result
  8787.  mysqli_get_client_info
  8788.  mysqli_get_host_info
  8789.  mysqli_get_proto_info
  8790.  mysqli_get_server_info
  8791.  mysqli_get_server_version
  8792.  mysqli_info
  8793.  mysqli_init
  8794.  mysqli_insert_id
  8795.  mysqli_kill
  8796.  mysqli_master_query
  8797.  mysqli_num_fields
  8798.  mysqli_num_rows
  8799.  mysqli_options
  8800.  mysqli_param_count
  8801.  mysqli_ping
  8802.  mysqli_prepare_result
  8803.  mysqli_prepare
  8804.  mysqli_profiler
  8805.  mysqli_query
  8806.  mysqli_read_query_result
  8807.  mysqli_real_connect
  8808.  mysqli_real_escape_string
  8809.  mysqli_real_query
  8810.  mysqli_reload
  8811.  mysqli_rollback
  8812.  mysqli_rpl_parse_enabled
  8813.  mysqli_rpl_probe
  8814.  mysqli_rpl_query_type
  8815.  mysqli_select_db
  8816.  mysqli_send_long_data
  8817.  mysqli_send_query
  8818.  mysqli_slave_query
  8819.  mysqli_ssl_set
  8820.  mysqli_stat
  8821.  mysqli_stmt_affected_rows
  8822.  mysqli_stmt_close
  8823.  mysqli_stmt_errno
  8824.  mysqli_stmt_error
  8825.  mysqli_stmt_store_result
  8826.  mysqli_store_result
  8827.  mysqli_thread_id
  8828.  mysqli_thread_safe
  8829.  mysqli_use_result
  8830.  mysqli_warning_count
  8831. Msession - Mohawk Software session handler functions
  8832.  msession_connect
  8833.  msession_count
  8834.  msession_create
  8835.  msession_destroy
  8836.  msession_disconnect
  8837.  msession_find
  8838.  msession_get_array
  8839.  msession_get
  8840.  msession_getdata
  8841.  msession_inc
  8842.  msession_list
  8843.  msession_listvar
  8844.  msession_lock
  8845.  msession_plugin
  8846.  msession_randstr
  8847.  msession_set_array
  8848.  msession_set
  8849.  msession_setdata
  8850.  msession_timeout
  8851.  msession_uniq
  8852.  msession_unlock
  8853. muscat - muscat functions
  8854.  muscat_close
  8855.  muscat_get
  8856.  muscat_give
  8857.  muscat_setup_net
  8858.  muscat_setup
  8859. Network - Network Functions
  8860.  checkdnsrr
  8861.  closelog
  8862.  debugger_off
  8863.  debugger_on
  8864.  define_syslog_variables
  8865.  dns_check_record
  8866.  dns_get_mx
  8867.  dns_get_record
  8868.  fsockopen
  8869.  gethostbyaddr
  8870.  gethostbyname
  8871.  gethostbynamel
  8872.  getmxrr
  8873.  getprotobyname
  8874.  getprotobynumber
  8875.  getservbyname
  8876.  getservbyport
  8877.  ip2long
  8878.  long2ip
  8879.  openlog
  8880.  pfsockopen
  8881.  socket_get_status
  8882.  socket_set_blocking
  8883.  socket_set_timeout
  8884.  syslog
  8885. Ncurses - Ncurses terminal screen control functions
  8886.  ncurses_addch
  8887.  ncurses_addchnstr
  8888.  ncurses_addchstr
  8889.  ncurses_addnstr
  8890.  ncurses_addstr
  8891.  ncurses_assume_default_colors
  8892.  ncurses_attroff
  8893.  ncurses_attron
  8894.  ncurses_attrset
  8895.  ncurses_baudrate
  8896.  ncurses_beep
  8897.  ncurses_bkgd
  8898.  ncurses_bkgdset
  8899.  ncurses_border
  8900.  ncurses_bottom_panel
  8901.  ncurses_can_change_color
  8902.  ncurses_cbreak
  8903.  ncurses_clear
  8904.  ncurses_clrtobot
  8905.  ncurses_clrtoeol
  8906.  ncurses_color_content
  8907.  ncurses_color_set
  8908.  ncurses_curs_set
  8909.  ncurses_def_prog_mode
  8910.  ncurses_def_shell_mode
  8911.  ncurses_define_key
  8912.  ncurses_del_panel
  8913.  ncurses_delay_output
  8914.  ncurses_delch
  8915.  ncurses_deleteln
  8916.  ncurses_delwin
  8917.  ncurses_doupdate
  8918.  ncurses_echo
  8919.  ncurses_echochar
  8920.  ncurses_end
  8921.  ncurses_erase
  8922.  ncurses_erasechar
  8923.  ncurses_filter
  8924.  ncurses_flash
  8925.  ncurses_flushinp
  8926.  ncurses_getch
  8927.  ncurses_getmaxyx
  8928.  ncurses_getmouse
  8929.  ncurses_getyx
  8930.  ncurses_halfdelay
  8931.  ncurses_has_colors
  8932.  ncurses_has_ic
  8933.  ncurses_has_il
  8934.  ncurses_has_key
  8935.  ncurses_hide_panel
  8936.  ncurses_hline
  8937.  ncurses_inch
  8938.  ncurses_init_color
  8939.  ncurses_init_pair
  8940.  ncurses_init
  8941.  ncurses_insch
  8942.  ncurses_insdelln
  8943.  ncurses_insertln
  8944.  ncurses_insstr
  8945.  ncurses_instr
  8946.  ncurses_isendwin
  8947.  ncurses_keyok
  8948.  ncurses_keypad
  8949.  ncurses_killchar
  8950.  ncurses_longname
  8951.  ncurses_meta
  8952.  ncurses_mouse_trafo
  8953.  ncurses_mouseinterval
  8954.  ncurses_mousemask
  8955.  ncurses_move_panel
  8956.  ncurses_move
  8957.  ncurses_mvaddch
  8958.  ncurses_mvaddchnstr
  8959.  ncurses_mvaddchstr
  8960.  ncurses_mvaddnstr
  8961.  ncurses_mvaddstr
  8962.  ncurses_mvcur
  8963.  ncurses_mvdelch
  8964.  ncurses_mvgetch
  8965.  ncurses_mvhline
  8966.  ncurses_mvinch
  8967.  ncurses_mvvline
  8968.  ncurses_mvwaddstr
  8969.  ncurses_napms
  8970.  ncurses_new_panel
  8971.  ncurses_newpad
  8972.  ncurses_newwin
  8973.  ncurses_nl
  8974.  ncurses_nocbreak
  8975.  ncurses_noecho
  8976.  ncurses_nonl
  8977.  ncurses_noqiflush
  8978.  ncurses_noraw
  8979.  ncurses_pair_content
  8980.  ncurses_panel_above
  8981.  ncurses_panel_below
  8982.  ncurses_panel_window
  8983.  ncurses_pnoutrefresh
  8984.  ncurses_prefresh
  8985.  ncurses_putp
  8986.  ncurses_qiflush
  8987.  ncurses_raw
  8988.  ncurses_refresh
  8989.  ncurses_replace_panel
  8990.  ncurses_reset_prog_mode
  8991.  ncurses_reset_shell_mode
  8992.  ncurses_resetty
  8993.  ncurses_savetty
  8994.  ncurses_scr_dump
  8995.  ncurses_scr_init
  8996.  ncurses_scr_restore
  8997.  ncurses_scr_set
  8998.  ncurses_scrl
  8999.  ncurses_show_panel
  9000.  ncurses_slk_attr
  9001.  ncurses_slk_attroff
  9002.  ncurses_slk_attron
  9003.  ncurses_slk_attrset
  9004.  ncurses_slk_clear
  9005.  ncurses_slk_color
  9006.  ncurses_slk_init
  9007.  ncurses_slk_noutrefresh
  9008.  ncurses_slk_refresh
  9009.  ncurses_slk_restore
  9010.  ncurses_slk_set
  9011.  ncurses_slk_touch
  9012.  ncurses_standend
  9013.  ncurses_standout
  9014.  ncurses_start_color
  9015.  ncurses_termattrs
  9016.  ncurses_termname
  9017.  ncurses_timeout
  9018.  ncurses_top_panel
  9019.  ncurses_typeahead
  9020.  ncurses_ungetch
  9021.  ncurses_ungetmouse
  9022.  ncurses_update_panels
  9023.  ncurses_use_default_colors
  9024.  ncurses_use_env
  9025.  ncurses_use_extended_names
  9026.  ncurses_vidattr
  9027.  ncurses_vline
  9028.  ncurses_waddch
  9029.  ncurses_waddstr
  9030.  ncurses_wattroff
  9031.  ncurses_wattron
  9032.  ncurses_wattrset
  9033.  ncurses_wborder
  9034.  ncurses_wclear
  9035.  ncurses_wcolor_set
  9036.  ncurses_werase
  9037.  ncurses_wgetch
  9038.  ncurses_whline
  9039.  ncurses_wmouse_trafo
  9040.  ncurses_wmove
  9041.  ncurses_wnoutrefresh
  9042.  ncurses_wrefresh
  9043.  ncurses_wstandend
  9044.  ncurses_wstandout
  9045.  ncurses_wvline
  9046. Lotus Notes - Lotus Notes functions
  9047.  notes_body
  9048.  notes_copy_db
  9049.  notes_create_db
  9050.  notes_create_note
  9051.  notes_drop_db
  9052.  notes_find_note
  9053.  notes_header_info
  9054.  notes_list_msgs
  9055.  notes_mark_read
  9056.  notes_mark_unread
  9057.  notes_nav_create
  9058.  notes_search
  9059.  notes_unread
  9060.  notes_version
  9061. NSAPI - NSAPI-specific Functions
  9062.  nsapi_request_headers
  9063.  nsapi_response_headers
  9064.  nsapi_virtual
  9065. ODBC - Unified ODBC functions
  9066.  odbc_autocommit
  9067.  odbc_binmode
  9068.  odbc_close_all
  9069.  odbc_close
  9070.  odbc_columnprivileges
  9071.  odbc_columns
  9072.  odbc_commit
  9073.  odbc_connect
  9074.  odbc_cursor
  9075.  odbc_data_source
  9076.  odbc_do
  9077.  odbc_error
  9078.  odbc_errormsg
  9079.  odbc_exec
  9080.  odbc_execute
  9081.  odbc_fetch_array
  9082.  odbc_fetch_into
  9083.  odbc_fetch_object
  9084.  odbc_fetch_row
  9085.  odbc_field_len
  9086.  odbc_field_name
  9087.  odbc_field_num
  9088.  odbc_field_precision
  9089.  odbc_field_scale
  9090.  odbc_field_type
  9091.  odbc_foreignkeys
  9092.  odbc_free_result
  9093.  odbc_gettypeinfo
  9094.  odbc_longreadlen
  9095.  odbc_next_result
  9096.  odbc_num_fields
  9097.  odbc_num_rows
  9098.  odbc_pconnect
  9099.  odbc_prepare
  9100.  odbc_primarykeys
  9101.  odbc_procedurecolumns
  9102.  odbc_procedures
  9103.  odbc_result_all
  9104.  odbc_result
  9105.  odbc_rollback
  9106.  odbc_setoption
  9107.  odbc_specialcolumns
  9108.  odbc_statistics
  9109.  odbc_tableprivileges
  9110.  odbc_tables
  9111. Object Aggregation - Object Aggregation/Composition Functions
  9112.  aggregate_info
  9113.  aggregate_methods_by_list
  9114.  aggregate_methods_by_regexp
  9115.  aggregate_methods
  9116.  aggregate_properties_by_list
  9117.  aggregate_properties_by_regexp
  9118.  aggregate_properties
  9119.  aggregate
  9120.  aggregation_info
  9121.  deaggregate
  9122. OCI8 - Oracle 8 functions
  9123.  ocibindbyname
  9124.  ocicancel
  9125.  ocicloselob
  9126.  ocicollappend
  9127.  ocicollassign
  9128.  ocicollassignelem
  9129.  ocicollgetelem
  9130.  ocicollmax
  9131.  ocicollsize
  9132.  ocicolltrim
  9133.  ocicolumnisnull
  9134.  ocicolumnname
  9135.  ocicolumnprecision
  9136.  ocicolumnscale
  9137.  ocicolumnsize
  9138.  ocicolumntype
  9139.  ocicolumntyperaw
  9140.  ocicommit
  9141.  ocidefinebyname
  9142.  ocierror
  9143.  ociexecute
  9144.  ocifetch
  9145.  ocifetchinto
  9146.  ocifetchstatement
  9147.  ocifreecollection
  9148.  ocifreecursor
  9149.  ocifreedesc
  9150.  ocifreestatement
  9151.  ociinternaldebug
  9152.  ociloadlob
  9153.  ocilogoff
  9154.  ocilogon
  9155.  ocinewcollection
  9156.  ocinewcursor
  9157.  ocinewdescriptor
  9158.  ocinlogon
  9159.  ocinumcols
  9160.  ociparse
  9161.  ociplogon
  9162.  ociresult
  9163.  ocirollback
  9164.  ocirowcount
  9165.  ocisavelob
  9166.  ocisavelobfile
  9167.  ociserverversion
  9168.  ocisetprefetch
  9169.  ocistatementtype
  9170.  ociwritelobtofile
  9171.  ociwritetemporarylob
  9172. OpenSSL - OpenSSL functions
  9173.  openssl_csr_export_to_file
  9174.  openssl_csr_export
  9175.  openssl_csr_new
  9176.  openssl_csr_sign
  9177.  openssl_error_string
  9178.  openssl_free_key
  9179.  openssl_get_privatekey
  9180.  openssl_get_publickey
  9181.  openssl_open
  9182.  openssl_pkcs7_decrypt
  9183.  openssl_pkcs7_encrypt
  9184.  openssl_pkcs7_sign
  9185.  openssl_pkcs7_verify
  9186.  openssl_pkey_export_to_file
  9187.  openssl_pkey_export
  9188.  openssl_pkey_get_private
  9189.  openssl_pkey_get_public
  9190.  openssl_pkey_new
  9191.  openssl_private_decrypt
  9192.  openssl_private_encrypt
  9193.  openssl_public_decrypt
  9194.  openssl_public_encrypt
  9195.  openssl_seal
  9196.  openssl_sign
  9197.  openssl_verify
  9198.  openssl_x509_check_private_key
  9199.  openssl_x509_checkpurpose
  9200.  openssl_x509_export_to_file
  9201.  openssl_x509_export
  9202.  openssl_x509_free
  9203.  openssl_x509_parse
  9204.  openssl_x509_read
  9205. Oracle - Oracle functions
  9206.  ora_bind
  9207.  ora_close
  9208.  ora_columnname
  9209.  ora_columnsize
  9210.  ora_columntype
  9211.  ora_commit
  9212.  ora_commitoff
  9213.  ora_commiton
  9214.  ora_do
  9215.  ora_error
  9216.  ora_errorcode
  9217.  ora_exec
  9218.  ora_fetch_into
  9219.  ora_fetch
  9220.  ora_getcolumn
  9221.  ora_logoff
  9222.  ora_logon
  9223.  ora_numcols
  9224.  ora_numrows
  9225.  ora_open
  9226.  ora_parse
  9227.  ora_plogon
  9228.  ora_rollback
  9229. OvrimosSQL - Ovrimos SQL functions
  9230.  ovrimos_close
  9231.  ovrimos_commit
  9232.  ovrimos_connect
  9233.  ovrimos_cursor
  9234.  ovrimos_exec
  9235.  ovrimos_execute
  9236.  ovrimos_fetch_into
  9237.  ovrimos_fetch_row
  9238.  ovrimos_field_len
  9239.  ovrimos_field_name
  9240.  ovrimos_field_num
  9241.  ovrimos_field_type
  9242.  ovrimos_free_result
  9243.  ovrimos_longreadlen
  9244.  ovrimos_num_fields
  9245.  ovrimos_num_rows
  9246.  ovrimos_prepare
  9247.  ovrimos_result_all
  9248.  ovrimos_result
  9249.  ovrimos_rollback
  9250. Output Control - Output Control Functions
  9251.  flush
  9252.  ob_clean
  9253.  ob_end_clean
  9254.  ob_end_flush
  9255.  ob_flush
  9256.  ob_get_clean
  9257.  ob_get_contents
  9258.  ob_get_length
  9259.  ob_get_level
  9260.  ob_get_status
  9261.  ob_gzhandler
  9262.  ob_implicit_flush
  9263.  ob_start
  9264. Object overloading - Object property and method call overloading
  9265.  overload
  9266. PDF - PDF functions
  9267.  pdf_add_annotation
  9268.  pdf_add_bookmark
  9269.  pdf_add_launchlink
  9270.  pdf_add_locallink
  9271.  pdf_add_note
  9272.  pdf_add_outline
  9273.  pdf_add_pdflink
  9274.  pdf_add_thumbnail
  9275.  pdf_add_weblink
  9276.  pdf_arc
  9277.  pdf_arcn
  9278.  pdf_attach_file
  9279.  pdf_begin_page
  9280.  pdf_begin_pattern
  9281.  pdf_begin_template
  9282.  pdf_circle
  9283.  pdf_clip
  9284.  pdf_close_image
  9285.  pdf_close_pdi_page
  9286.  pdf_close_pdi
  9287.  pdf_close
  9288.  pdf_closepath_fill_stroke
  9289.  pdf_closepath_stroke
  9290.  pdf_closepath
  9291.  pdf_concat
  9292.  pdf_continue_text
  9293.  pdf_curveto
  9294.  pdf_delete
  9295.  pdf_end_page
  9296.  pdf_end_pattern
  9297.  pdf_end_template
  9298.  pdf_endpath
  9299.  pdf_fill_stroke
  9300.  pdf_fill
  9301.  pdf_findfont
  9302.  pdf_get_buffer
  9303.  pdf_get_font
  9304.  pdf_get_fontname
  9305.  pdf_get_fontsize
  9306.  pdf_get_image_height
  9307.  pdf_get_image_width
  9308.  pdf_get_majorversion
  9309.  pdf_get_minorversion
  9310.  pdf_get_parameter
  9311.  pdf_get_pdi_parameter
  9312.  pdf_get_pdi_value
  9313.  pdf_get_value
  9314.  pdf_initgraphics
  9315.  pdf_lineto
  9316.  pdf_makespotcolor
  9317.  pdf_moveto
  9318.  pdf_new
  9319.  pdf_open_CCITT
  9320.  pdf_open_file
  9321.  pdf_open_gif
  9322.  pdf_open_image_file
  9323.  pdf_open_image
  9324.  pdf_open_jpeg
  9325.  pdf_open_memory_image
  9326.  pdf_open_pdi_page
  9327.  pdf_open_pdi
  9328.  pdf_open_png
  9329.  pdf_open_tiff
  9330.  pdf_open
  9331.  pdf_place_image
  9332.  pdf_place_pdi_page
  9333.  pdf_rect
  9334.  pdf_restore
  9335.  pdf_rotate
  9336.  pdf_save
  9337.  pdf_scale
  9338.  pdf_set_border_color
  9339.  pdf_set_border_dash
  9340.  pdf_set_border_style
  9341.  pdf_set_char_spacing
  9342.  pdf_set_duration
  9343.  pdf_set_font
  9344.  pdf_set_horiz_scaling
  9345.  pdf_set_info_author
  9346.  pdf_set_info_creator
  9347.  pdf_set_info_keywords
  9348.  pdf_set_info_subject
  9349.  pdf_set_info_title
  9350.  pdf_set_info
  9351.  pdf_set_leading
  9352.  pdf_set_parameter
  9353.  pdf_set_text_matrix
  9354.  pdf_set_text_pos
  9355.  pdf_set_text_rendering
  9356.  pdf_set_text_rise
  9357.  pdf_set_value
  9358.  pdf_set_word_spacing
  9359.  pdf_setcolor
  9360.  pdf_setdash
  9361.  pdf_setflat
  9362.  pdf_setfont
  9363.  pdf_setgray_fill
  9364.  pdf_setgray_stroke
  9365.  pdf_setgray
  9366.  pdf_setlinecap
  9367.  pdf_setlinejoin
  9368.  pdf_setlinewidth
  9369.  pdf_setmatrix
  9370.  pdf_setmiterlimit
  9371.  pdf_setpolydash
  9372.  pdf_setrgbcolor_fill
  9373.  pdf_setrgbcolor_stroke
  9374.  pdf_setrgbcolor
  9375.  pdf_show_boxed
  9376.  pdf_show_xy
  9377.  pdf_show
  9378.  pdf_skew
  9379.  pdf_stringwidth
  9380.  pdf_stroke
  9381.  pdf_translate
  9382. Verisign Payflow Pro - Verisign Payflow Pro functions
  9383.  pfpro_cleanup
  9384.  pfpro_init
  9385.  pfpro_process_raw
  9386.  pfpro_process
  9387.  pfpro_version
  9388. PHP Options/Info - PHP Options&Information
  9389.  assert_options
  9390.  assert
  9391.  dl
  9392.  extension_loaded
  9393.  get_cfg_var
  9394.  get_current_user
  9395.  get_defined_constants
  9396.  get_extension_funcs
  9397.  get_include_path
  9398.  get_included_files
  9399.  get_loaded_extensions
  9400.  get_magic_quotes_gpc
  9401.  get_magic_quotes_runtime
  9402.  get_required_files
  9403.  getenv
  9404.  getlastmod
  9405.  getmygid
  9406.  getmyinode
  9407.  getmypid
  9408.  getmyuid
  9409.  getopt
  9410.  getrusage
  9411.  ini_alter
  9412.  ini_get_all
  9413.  ini_get
  9414.  ini_restore
  9415.  ini_set
  9416.  main
  9417.  memory_get_usage
  9418.  php_ini_scanned_files
  9419.  php_logo_guid
  9420.  php_sapi_name
  9421.  php_uname
  9422.  phpcredits
  9423.  phpinfo
  9424.  phpversion
  9425.  putenv
  9426.  restore_include_path
  9427.  set_include_path
  9428.  set_magic_quotes_runtime
  9429.  set_time_limit
  9430.  version_compare
  9431.  zend_logo_guid
  9432.  zend_version
  9433. POSIX - POSIX functions
  9434.  posix_ctermid
  9435.  posix_get_last_error
  9436.  posix_getcwd
  9437.  posix_getegid
  9438.  posix_geteuid
  9439.  posix_getgid
  9440.  posix_getgrgid
  9441.  posix_getgrnam
  9442.  posix_getgroups
  9443.  posix_getlogin
  9444.  posix_getpgid
  9445.  posix_getpgrp
  9446.  posix_getpid
  9447.  posix_getppid
  9448.  posix_getpwnam
  9449.  posix_getpwuid
  9450.  posix_getrlimit
  9451.  posix_getsid
  9452.  posix_getuid
  9453.  posix_isatty
  9454.  posix_kill
  9455.  posix_mkfifo
  9456.  posix_setegid
  9457.  posix_seteuid
  9458.  posix_setgid
  9459.  posix_setpgid
  9460.  posix_setsid
  9461.  posix_setuid
  9462.  posix_strerror
  9463.  posix_times
  9464.  posix_ttyname
  9465.  posix_uname
  9466. PostgreSQL - PostgreSQL functions
  9467.  pg_affected_rows
  9468.  pg_cancel_query
  9469.  pg_client_encoding
  9470.  pg_close
  9471.  pg_connect
  9472.  pg_connection_busy
  9473.  pg_connection_reset
  9474.  pg_connection_status
  9475.  pg_convert
  9476.  pg_copy_from
  9477.  pg_copy_to
  9478.  pg_dbname
  9479.  pg_delete
  9480.  pg_end_copy
  9481.  pg_escape_bytea
  9482.  pg_escape_string
  9483.  pg_fetch_all
  9484.  pg_fetch_array
  9485.  pg_fetch_assoc
  9486.  pg_fetch_object
  9487.  pg_fetch_result
  9488.  pg_fetch_row
  9489.  pg_field_is_null
  9490.  pg_field_name
  9491.  pg_field_num
  9492.  pg_field_prtlen
  9493.  pg_field_size
  9494.  pg_field_type
  9495.  pg_free_result
  9496.  pg_get_notify
  9497.  pg_get_pid
  9498.  pg_get_result
  9499.  pg_host
  9500.  pg_insert
  9501.  pg_last_error
  9502.  pg_last_notice
  9503.  pg_last_oid
  9504.  pg_lo_close
  9505.  pg_lo_create
  9506.  pg_lo_export
  9507.  pg_lo_import
  9508.  pg_lo_open
  9509.  pg_lo_read_all
  9510.  pg_lo_read
  9511.  pg_lo_seek
  9512.  pg_lo_tell
  9513.  pg_lo_unlink
  9514.  pg_lo_write
  9515.  pg_meta_data
  9516.  pg_num_fields
  9517.  pg_num_rows
  9518.  pg_options
  9519.  pg_pconnect
  9520.  pg_ping
  9521.  pg_port
  9522.  pg_put_line
  9523.  pg_query
  9524.  pg_result_error
  9525.  pg_result_seek
  9526.  pg_result_status
  9527.  pg_select
  9528.  pg_send_query
  9529.  pg_set_client_encoding
  9530.  pg_trace
  9531.  pg_tty
  9532.  pg_unescape_bytea
  9533.  pg_untrace
  9534.  pg_update
  9535. PCNTL - Process Control Functions
  9536.  pcntl_exec
  9537.  pcntl_fork
  9538.  pcntl_signal
  9539.  pcntl_waitpid
  9540.  pcntl_wexitstatus
  9541.  pcntl_wifexited
  9542.  pcntl_wifsignaled
  9543.  pcntl_wifstopped
  9544.  pcntl_wstopsig
  9545.  pcntl_wtermsig
  9546. Program Execution - Program Execution functions
  9547.  escapeshellarg
  9548.  escapeshellcmd
  9549.  exec
  9550.  passthru
  9551.  proc_close
  9552.  proc_get_status
  9553.  proc_nice
  9554.  proc_open
  9555.  proc_terminate
  9556.  shell_exec
  9557.  system
  9558. Printer - Printer functions
  9559.  printer_abort
  9560.  printer_close
  9561.  printer_create_brush
  9562.  printer_create_dc
  9563.  printer_create_font
  9564.  printer_create_pen
  9565.  printer_delete_brush
  9566.  printer_delete_dc
  9567.  printer_delete_font
  9568.  printer_delete_pen
  9569.  printer_draw_bmp
  9570.  printer_draw_chord
  9571.  printer_draw_elipse
  9572.  printer_draw_line
  9573.  printer_draw_pie
  9574.  printer_draw_rectangle
  9575.  printer_draw_roundrect
  9576.  printer_draw_text
  9577.  printer_end_doc
  9578.  printer_end_page
  9579.  printer_get_option
  9580.  printer_list
  9581.  printer_logical_fontheight
  9582.  printer_open
  9583.  printer_select_brush
  9584.  printer_select_font
  9585.  printer_select_pen
  9586.  printer_set_option
  9587.  printer_start_doc
  9588.  printer_start_page
  9589.  printer_write
  9590. Pspell - Pspell Functions
  9591.  pspell_add_to_personal
  9592.  pspell_add_to_session
  9593.  pspell_check
  9594.  pspell_clear_session
  9595.  pspell_config_create
  9596.  pspell_config_ignore
  9597.  pspell_config_mode
  9598.  pspell_config_personal
  9599.  pspell_config_repl
  9600.  pspell_config_runtogether
  9601.  pspell_config_save_repl
  9602.  pspell_new_config
  9603.  pspell_new_personal
  9604.  pspell_new
  9605.  pspell_save_wordlist
  9606.  pspell_store_replacement
  9607.  pspell_suggest
  9608. Readline - GNU Readline
  9609.  readline_add_history
  9610.  readline_clear_history
  9611.  readline_completion_function
  9612.  readline_info
  9613.  readline_list_history
  9614.  readline_read_history
  9615.  readline_write_history
  9616.  readline
  9617. Recode - GNU Recode functions
  9618.  recode_file
  9619.  recode_string
  9620.  recode
  9621. PCRE - Regular Expression Functions (Perl-Compatible)
  9622.  Pattern Modifiers
  9623.  Pattern Syntax
  9624.  preg_grep
  9625.  preg_match_all
  9626.  preg_match
  9627.  preg_quote
  9628.  preg_replace_callback
  9629.  preg_replace
  9630.  preg_split
  9631. qtdom - qtdom functions
  9632.  qdom_error
  9633.  qdom_tree
  9634. Regexps - Regular Expression Functions (POSIX Extended)
  9635.  ereg_replace
  9636.  ereg
  9637.  eregi_replace
  9638.  eregi
  9639.  split
  9640.  spliti
  9641.  sql_regcase
  9642. Semaphore - Semaphore, Shared Memory and IPC Functions
  9643.  ftok
  9644.  msg_get_queue
  9645.  msg_receive
  9646.  msg_remove_queue
  9647.  msg_send
  9648.  msg_set_queue
  9649.  msg_stat_queue
  9650.  sem_acquire
  9651.  sem_get
  9652.  sem_release
  9653.  sem_remove
  9654.  shm_attach
  9655.  shm_detach
  9656.  shm_get_var
  9657.  shm_put_var
  9658.  shm_remove_var
  9659.  shm_remove
  9660. SESAM - SESAM database functions
  9661.  sesam_affected_rows
  9662.  sesam_commit
  9663.  sesam_connect
  9664.  sesam_diagnostic
  9665.  sesam_disconnect
  9666.  sesam_errormsg
  9667.  sesam_execimm
  9668.  sesam_fetch_array
  9669.  sesam_fetch_result
  9670.  sesam_fetch_row
  9671.  sesam_field_array
  9672.  sesam_field_name
  9673.  sesam_free_result
  9674.  sesam_num_fields
  9675.  sesam_query
  9676.  sesam_rollback
  9677.  sesam_seek_row
  9678.  sesam_settransaction
  9679. Sessions - Session handling functions
  9680.  session_cache_expire
  9681.  session_cache_limiter
  9682.  session_decode
  9683.  session_destroy
  9684.  session_encode
  9685.  session_get_cookie_params
  9686.  session_id
  9687.  session_is_registered
  9688.  session_module_name
  9689.  session_name
  9690.  session_regenerate_id
  9691.  session_register
  9692.  session_save_path
  9693.  session_set_cookie_params
  9694.  session_set_save_handler
  9695.  session_start
  9696.  session_unregister
  9697.  session_unset
  9698.  session_write_close
  9699. shmop - Shared Memory Functions
  9700.  shmop_close
  9701.  shmop_delete
  9702.  shmop_open
  9703.  shmop_read
  9704.  shmop_size
  9705.  shmop_write
  9706. SQLite - SQLite
  9707.  sqlite_array_query
  9708.  sqlite_busy_timeout
  9709.  sqlite_changes
  9710.  sqlite_close
  9711.  sqlite_column
  9712.  sqlite_create_aggregate
  9713.  sqlite_create_function
  9714.  sqlite_current
  9715.  sqlite_error_string
  9716.  sqlite_escape_string
  9717.  sqlite_fetch_array
  9718.  sqlite_fetch_single
  9719.  sqlite_fetch_string
  9720.  sqlite_field_name
  9721.  sqlite_has_more
  9722.  sqlite_last_error
  9723.  sqlite_last_insert_rowid
  9724.  sqlite_libencoding
  9725.  sqlite_libversion
  9726.  sqlite_next
  9727.  sqlite_num_fields
  9728.  sqlite_num_rows
  9729.  sqlite_open
  9730.  sqlite_popen
  9731.  sqlite_query
  9732.  sqlite_rewind
  9733.  sqlite_seek
  9734.  sqlite_udf_decode_binary
  9735.  sqlite_udf_encode_binary
  9736.  sqlite_unbuffered_query
  9737. SWF - Shockwave Flash functions
  9738.  swf_actiongeturl
  9739.  swf_actiongotoframe
  9740.  swf_actiongotolabel
  9741.  swf_actionnextframe
  9742.  swf_actionplay
  9743.  swf_actionprevframe
  9744.  swf_actionsettarget
  9745.  swf_actionstop
  9746.  swf_actiontogglequality
  9747.  swf_actionwaitforframe
  9748.  swf_addbuttonrecord
  9749.  swf_addcolor
  9750.  swf_closefile
  9751.  swf_definebitmap
  9752.  swf_definefont
  9753.  swf_defineline
  9754.  swf_definepoly
  9755.  swf_definerect
  9756.  swf_definetext
  9757.  swf_endbutton
  9758.  swf_enddoaction
  9759.  swf_endshape
  9760.  swf_endsymbol
  9761.  swf_fontsize
  9762.  swf_fontslant
  9763.  swf_fonttracking
  9764.  swf_getbitmapinfo
  9765.  swf_getfontinfo
  9766.  swf_getframe
  9767.  swf_labelframe
  9768.  swf_lookat
  9769.  swf_modifyobject
  9770.  swf_mulcolor
  9771.  swf_nextid
  9772.  swf_oncondition
  9773.  swf_openfile
  9774.  swf_ortho2
  9775.  swf_ortho
  9776.  swf_perspective
  9777.  swf_placeobject
  9778.  swf_polarview
  9779.  swf_popmatrix
  9780.  swf_posround
  9781.  swf_pushmatrix
  9782.  swf_removeobject
  9783.  swf_rotate
  9784.  swf_scale
  9785.  swf_setfont
  9786.  swf_setframe
  9787.  swf_shapearc
  9788.  swf_shapecurveto3
  9789.  swf_shapecurveto
  9790.  swf_shapefillbitmapclip
  9791.  swf_shapefillbitmaptile
  9792.  swf_shapefilloff
  9793.  swf_shapefillsolid
  9794.  swf_shapelinesolid
  9795.  swf_shapelineto
  9796.  swf_shapemoveto
  9797.  swf_showframe
  9798.  swf_startbutton
  9799.  swf_startdoaction
  9800.  swf_startshape
  9801.  swf_startsymbol
  9802.  swf_textwidth
  9803.  swf_translate
  9804.  swf_viewport
  9805. SNMP - SNMP functions
  9806.  snmp_get_quick_print
  9807.  snmp_set_quick_print
  9808.  snmpget
  9809.  snmprealwalk
  9810.  snmpset
  9811.  snmpwalk
  9812.  snmpwalkoid
  9813. Sockets - Socket functions
  9814.  socket_accept
  9815.  socket_bind
  9816.  socket_clear_error
  9817.  socket_close
  9818.  socket_connect
  9819.  socket_create_listen
  9820.  socket_create_pair
  9821.  socket_create
  9822.  socket_get_option
  9823.  socket_getpeername
  9824.  socket_getsockname
  9825.  socket_iovec_add
  9826.  socket_iovec_alloc
  9827.  socket_iovec_delete
  9828.  socket_iovec_fetch
  9829.  socket_iovec_free
  9830.  socket_iovec_set
  9831.  socket_last_error
  9832.  socket_listen
  9833.  socket_read
  9834.  socket_readv
  9835.  socket_recv
  9836.  socket_recvfrom
  9837.  socket_recvmsg
  9838.  socket_select
  9839.  socket_send
  9840.  socket_sendmsg
  9841.  socket_sendto
  9842.  socket_set_block
  9843.  socket_set_nonblock
  9844.  socket_set_option
  9845.  socket_shutdown
  9846.  socket_strerror
  9847.  socket_write
  9848.  socket_writev
  9849. Streams - Stream functions
  9850.  stream_context_create
  9851.  stream_context_get_options
  9852.  stream_context_set_option
  9853.  stream_context_set_params
  9854.  stream_copy_to_stream
  9855.  stream_filter_append
  9856.  stream_filter_prepend
  9857.  stream_filter_register
  9858.  stream_get_filters
  9859.  stream_get_line
  9860.  stream_get_meta_data
  9861.  stream_get_transports
  9862.  stream_get_wrappers
  9863.  stream_register_wrapper
  9864.  stream_select
  9865.  stream_set_blocking
  9866.  stream_set_timeout
  9867.  stream_set_write_buffer
  9868.  stream_socket_accept
  9869.  stream_socket_client
  9870.  stream_socket_get_name
  9871.  stream_socket_server
  9872.  stream_wrapper_register
  9873. Strings - String functions
  9874.  addcslashes
  9875.  addslashes
  9876.  bin2hex
  9877.  chop
  9878.  chr
  9879.  chunk_split
  9880.  convert_cyr_string
  9881.  count_chars
  9882.  crc32
  9883.  crypt
  9884.  echo
  9885.  explode
  9886.  fprintf
  9887.  get_html_translation_table
  9888.  hebrev
  9889.  hebrevc
  9890.  html_entity_decode
  9891.  htmlentities
  9892.  htmlspecialchars
  9893.  implode
  9894.  join
  9895.  levenshtein
  9896.  localeconv
  9897.  ltrim
  9898.  md5_file
  9899.  md5
  9900.  metaphone
  9901.  money_format
  9902.  nl_langinfo
  9903.  nl2br
  9904.  number_format
  9905.  ord
  9906.  parse_str
  9907.  print
  9908.  printf
  9909.  quoted_printable_decode
  9910.  quotemeta
  9911.  rtrim
  9912.  setlocale
  9913.  sha1_file
  9914.  sha1
  9915.  similar_text
  9916.  soundex
  9917.  sprintf
  9918.  sscanf
  9919.  str_ireplace
  9920.  str_pad
  9921.  str_repeat
  9922.  str_replace
  9923.  str_rot13
  9924.  str_shuffle
  9925.  str_split
  9926.  str_word_count
  9927.  strcasecmp
  9928.  strchr
  9929.  strcmp
  9930.  strcoll
  9931.  strcspn
  9932.  strip_tags
  9933.  stripcslashes
  9934.  stripos
  9935.  stripslashes
  9936.  stristr
  9937.  strlen
  9938.  strnatcasecmp
  9939.  strnatcmp
  9940.  strncasecmp
  9941.  strncmp
  9942.  strpos
  9943.  strrchr
  9944.  strrev
  9945.  strripos
  9946.  strrpos
  9947.  strspn
  9948.  strstr
  9949.  strtok
  9950.  strtolower
  9951.  strtoupper
  9952.  strtr
  9953.  substr_compare
  9954.  substr_count
  9955.  substr_replace
  9956.  substr
  9957.  trim
  9958.  ucfirst
  9959.  ucwords
  9960.  vprintf
  9961.  vsprintf
  9962.  wordwrap
  9963. Sybase - Sybase functions
  9964.  sybase_affected_rows
  9965.  sybase_close
  9966.  sybase_connect
  9967.  sybase_data_seek
  9968.  sybase_deadlock_retry_count
  9969.  sybase_fetch_array
  9970.  sybase_fetch_assoc
  9971.  sybase_fetch_field
  9972.  sybase_fetch_object
  9973.  sybase_fetch_row
  9974.  sybase_field_seek
  9975.  sybase_free_result
  9976.  sybase_get_last_message
  9977.  sybase_min_client_severity
  9978.  sybase_min_error_severity
  9979.  sybase_min_message_severity
  9980.  sybase_min_server_severity
  9981.  sybase_num_fields
  9982.  sybase_num_rows
  9983.  sybase_pconnect
  9984.  sybase_query
  9985.  sybase_result
  9986.  sybase_select_db
  9987.  sybase_set_message_handler
  9988.  sybase_unbuffered_query
  9989. tidy - tidy Functions
  9990.  tidy_access_count
  9991.  tidy_clean_repair
  9992.  tidy_config_count
  9993.  tidy_diagnose
  9994.  tidy_error_count
  9995.  tidy_get_body
  9996.  tidy_get_config
  9997.  tidy_get_error_buffer
  9998.  tidy_get_head
  9999.  tidy_get_html_ver
  10000.  tidy_get_html
  10001.  tidy_get_output
  10002.  tidy_get_release
  10003.  tidy_get_root
  10004.  tidy_get_status
  10005.  tidy_getopt
  10006.  tidy_is_xhtml
  10007.  tidy_load_config
  10008.  tidy_parse_file
  10009.  tidy_parse_string
  10010.  tidy_repair_file
  10011.  tidy_repair_string
  10012.  tidy_reset_config
  10013.  tidy_save_config
  10014.  tidy_set_encoding
  10015.  tidy_setopt
  10016.  tidy_warning_count
  10017. Tokenizer - Tokenizer functions
  10018.  token_get_all
  10019.  token_name
  10020. URLs - URL Functions
  10021.  base64_decode
  10022.  base64_encode
  10023.  get_meta_tags
  10024.  http_build_query
  10025.  parse_url
  10026.  rawurldecode
  10027.  rawurlencode
  10028.  urldecode
  10029.  urlencode
  10030. Variables - Variable Functions
  10031.  doubleval
  10032.  empty
  10033.  floatval
  10034.  get_defined_vars
  10035.  get_resource_type
  10036.  gettype
  10037.  import_request_variables
  10038.  intval
  10039.  is_array
  10040.  is_bool
  10041.  is_callable
  10042.  is_double
  10043.  is_float
  10044.  is_int
  10045.  is_integer
  10046.  is_long
  10047.  is_null
  10048.  is_numeric
  10049.  is_object
  10050.  is_real
  10051.  is_resource
  10052.  is_scalar
  10053.  is_string
  10054.  isset
  10055.  print_r
  10056.  serialize
  10057.  settype
  10058.  strval
  10059.  unserialize
  10060.  unset
  10061.  var_dump
  10062.  var_export
  10063. vpopmail - vpopmail functions
  10064.  vpopmail_add_alias_domain_ex
  10065.  vpopmail_add_alias_domain
  10066.  vpopmail_add_domain_ex
  10067.  vpopmail_add_domain
  10068.  vpopmail_add_user
  10069.  vpopmail_alias_add
  10070.  vpopmail_alias_del_domain
  10071.  vpopmail_alias_del
  10072.  vpopmail_alias_get_all
  10073.  vpopmail_alias_get
  10074.  vpopmail_auth_user
  10075.  vpopmail_del_domain_ex
  10076.  vpopmail_del_domain
  10077.  vpopmail_del_user
  10078.  vpopmail_error
  10079.  vpopmail_passwd
  10080.  vpopmail_set_user_quota
  10081. W32api - W32api functions
  10082.  w32api_deftype
  10083.  w32api_init_dtype
  10084.  w32api_invoke_function
  10085.  w32api_register_function
  10086.  w32api_set_call_method
  10087. WDDX - WDDX Functions
  10088.  wddx_add_vars
  10089.  wddx_deserialize
  10090.  wddx_packet_end
  10091.  wddx_packet_start
  10092.  wddx_serialize_value
  10093.  wddx_serialize_vars
  10094. XML - XML parser functions
  10095.  utf8_decode
  10096.  utf8_encode
  10097.  xml_error_string
  10098.  xml_get_current_byte_index
  10099.  xml_get_current_column_number
  10100.  xml_get_current_line_number
  10101.  xml_get_error_code
  10102.  xml_parse_into_struct
  10103.  xml_parse
  10104.  xml_parser_create_ns
  10105.  xml_parser_create
  10106.  xml_parser_free
  10107.  xml_parser_get_option
  10108.  xml_parser_set_option
  10109.  xml_set_character_data_handler
  10110.  xml_set_default_handler
  10111.  xml_set_element_handler
  10112.  xml_set_end_namespace_decl_handler
  10113.  xml_set_external_entity_ref_handler
  10114.  xml_set_notation_decl_handler
  10115.  xml_set_object
  10116.  xml_set_processing_instruction_handler
  10117.  xml_set_start_namespace_decl_handler
  10118.  xml_set_unparsed_entity_decl_handler
  10119. XML-RPC - XML-RPC functions
  10120.  xmlrpc_decode_request
  10121.  xmlrpc_decode
  10122.  xmlrpc_encode_request
  10123.  xmlrpc_encode
  10124.  xmlrpc_get_type
  10125.  xmlrpc_parse_method_descriptions
  10126.  xmlrpc_server_add_introspection_data
  10127.  xmlrpc_server_call_method
  10128.  xmlrpc_server_create
  10129.  xmlrpc_server_destroy
  10130.  xmlrpc_server_register_introspection_callback
  10131.  xmlrpc_server_register_method
  10132.  xmlrpc_set_type
  10133. XSLT - XSLT functions
  10134.  xslt_create
  10135.  xslt_errno
  10136.  xslt_error
  10137.  xslt_free
  10138.  xslt_process
  10139.  xslt_set_base
  10140.  xslt_set_encoding
  10141.  xslt_set_error_handler
  10142.  xslt_set_log
  10143.  xslt_set_sax_handler
  10144.  xslt_set_sax_handlers
  10145.  xslt_set_scheme_handler
  10146.  xslt_set_scheme_handlers
  10147. YAZ - YAZ functions
  10148.  yaz_addinfo
  10149.  yaz_ccl_conf
  10150.  yaz_ccl_parse
  10151.  yaz_close
  10152.  yaz_connect
  10153.  yaz_database
  10154.  yaz_element
  10155.  yaz_errno
  10156.  yaz_error
  10157.  yaz_get_option
  10158.  yaz_hits
  10159.  yaz_itemorder
  10160.  yaz_present
  10161.  yaz_range
  10162.  yaz_record
  10163.  yaz_scan_result
  10164.  yaz_scan
  10165.  yaz_schema
  10166.  yaz_search
  10167.  yaz_set_option
  10168.  yaz_sort
  10169.  yaz_syntax
  10170.  yaz_wait
  10171. YP/NIS - YP/NIS Functions
  10172.  yp_all
  10173.  yp_cat
  10174.  yp_err_string
  10175.  yp_errno
  10176.  yp_first
  10177.  yp_get_default_domain
  10178.  yp_master
  10179.  yp_match
  10180.  yp_next
  10181.  yp_order
  10182. Zip - Zip File Functions (Read Only Access)
  10183.  zip_close
  10184.  zip_entry_close
  10185.  zip_entry_compressedsize
  10186.  zip_entry_compressionmethod
  10187.  zip_entry_filesize
  10188.  zip_entry_name
  10189.  zip_entry_open
  10190.  zip_entry_read
  10191.  zip_open
  10192.  zip_read
  10193. Zlib - Zlib Compression Functions
  10194.  gzclose
  10195.  gzcompress
  10196.  gzdeflate
  10197.  gzencode
  10198.  gzeof
  10199.  gzfile
  10200.  gzgetc
  10201.  gzgets
  10202.  gzgetss
  10203.  gzinflate
  10204.  gzopen
  10205.  gzpassthru
  10206.  gzputs
  10207.  gzread
  10208.  gzrewind
  10209.  gzseek
  10210.  gztell
  10211.  gzuncompress
  10212.  gzwrite
  10213.  readgzfile
  10214.  zlib_get_coding_type
  10215. ;
  10216. ;
  10217. ; -----------------------------------------------------------------------------
  10218. ; KeyWords
  10219. ; -----------------------------------------------------------------------------
  10220. [KeyWords]
  10221. ; predefined magical constants
  10222. __LINE__
  10223. __FILE__
  10224. __FUNCTION__
  10225. __CLASS__
  10226. ; core predefined constants
  10227. PHP_VERSION
  10228. PHP_OS
  10229. DEFAULT_INCLUDE_PATH
  10230. PEAR_INSTALL_DIR
  10231. PEAR_EXTENSION_DIR
  10232. PHP_EXTENSION_DIR
  10233. PHP_BINDIR
  10234. PHP_LIBDIR
  10235. PHP_DATADIR
  10236. PHP_SYSCONFDIR
  10237. PHP_LOCALSTATEDIR
  10238. PHP_CONFIG_FILE_PATH
  10239. PHP_OUTPUT_HANDLER_START
  10240. PHP_OUTPUT_HANDLER_CONT
  10241. PHP_OUTPUT_HANDLER_END
  10242. E_ERROR
  10243. E_WARNING
  10244. E_PARSE
  10245. E_NOTICE
  10246. E_CORE_ERROR
  10247. E_CORE_WARNING
  10248. E_COMPILE_ERROR
  10249. E_COMPILE_WARNING
  10250. E_USER_ERROR
  10251. E_USER_WARNING
  10252. E_USER_NOTICE
  10253. E_ALL
  10254. ; standard predefined constants
  10255. EXTR_OVERWRITE
  10256. EXTR_SKIP
  10257. EXTR_PREFIX_SAME
  10258. EXTR_PREFIX_ALL
  10259. EXTR_PREFIX_INVALID
  10260. EXTR_PREFIX_IF_EXISTS
  10261. EXTR_IF_EXISTS
  10262. SORT_ASC
  10263. SORT_DESC
  10264. SORT_REGULAR
  10265. SORT_NUMERIC
  10266. SORT_STRING
  10267. CASE_LOWER
  10268. CASE_UPPER
  10269. COUNT_NORMAL
  10270. COUNT_RECURSIVE
  10271. ASSERT_ACTIVE
  10272. ASSERT_CALLBACK
  10273. ASSERT_BAIL
  10274. ASSERT_WARNING
  10275. ASSERT_QUIET_EVAL
  10276. CONNECTION_ABORTED
  10277. CONNECTION_NORMAL
  10278. CONNECTION_TIMEOUT
  10279. INI_USER
  10280. INI_PERDIR
  10281. INI_SYSTEM
  10282. INI_ALL
  10283. M_E
  10284. M_LOG2E
  10285. M_LOG10E
  10286. M_LN2
  10287. M_LN10
  10288. M_PI
  10289. M_PI_2
  10290. M_PI_4
  10291. M_1_PI
  10292. M_2_PI
  10293. M_2_SQRTPI
  10294. M_SQRT2
  10295. M_SQRT1_2
  10296. CRYPT_SALT_LENGTH
  10297. CRYPT_STD_DES
  10298. CRYPT_EXT_DES
  10299. CRYPT_MD5
  10300. CRYPT_BLOWFISH
  10301. DIRECTORY_SEPARATOR
  10302. SEEK_SET
  10303. SEEK_CUR
  10304. SEEK_END
  10305. LOCK_SH
  10306. LOCK_EX
  10307. LOCK_UN
  10308. LOCK_NB
  10309. HTML_SPECIALCHARS
  10310. HTML_ENTITIES
  10311. ENT_COMPAT
  10312. ENT_QUOTES
  10313. ENT_NOQUOTES
  10314. INFO_GENERAL
  10315. INFO_CREDITS
  10316. INFO_CONFIGURATION
  10317. INFO_MODULES
  10318. INFO_ENVIRONMENT
  10319. INFO_VARIABLES
  10320. INFO_LICENSE
  10321. INFO_ALL
  10322. CREDITS_GROUP
  10323. CREDITS_GENERAL
  10324. CREDITS_SAPI
  10325. CREDITS_MODULES
  10326. CREDITS_DOCS
  10327. CREDITS_FULLPAGE
  10328. CREDITS_QA
  10329. CREDITS_ALL
  10330. STR_PAD_LEFT
  10331. STR_PAD_RIGHT
  10332. STR_PAD_BOTH
  10333. PATHINFO_DIRNAME
  10334. PATHINFO_BASENAME
  10335. PATHINFO_EXTENSION
  10336. CHAR_MAX
  10337. LC_CTYPE
  10338. LC_NUMERIC
  10339. LC_TIME
  10340. LC_COLLATE
  10341. LC_MONETARY
  10342. LC_ALL
  10343. LC_MESSAGES
  10344. ABDAY_1
  10345. ABDAY_2
  10346. ABDAY_3
  10347. ABDAY_4
  10348. ABDAY_5
  10349. ABDAY_6
  10350. ABDAY_7
  10351. DAY_1
  10352. DAY_2
  10353. DAY_3
  10354. DAY_4
  10355. DAY_5
  10356. DAY_6
  10357. DAY_7
  10358. ABMON_1
  10359. ABMON_2
  10360. ABMON_3
  10361. ABMON_4
  10362. ABMON_5
  10363. ABMON_6
  10364. ABMON_7
  10365. ABMON_8
  10366. ABMON_9
  10367. ABMON_10
  10368. ABMON_11
  10369. ABMON_12
  10370. MON_1
  10371. MON_2
  10372. MON_3
  10373. MON_4
  10374. MON_5
  10375. MON_6
  10376. MON_7
  10377. MON_8
  10378. MON_9
  10379. MON_10
  10380. MON_11
  10381. MON_12
  10382. AM_STR
  10383. PM_STR
  10384. D_T_FMT
  10385. D_FMT
  10386. T_FMT
  10387. T_FMT_AMPM
  10388. ERA
  10389. ERA_YEAR
  10390. ERA_D_T_FMT
  10391. ERA_D_FMT
  10392. ERA_T_FMT
  10393. ALT_DIGITS
  10394. INT_CURR_SYMBOL
  10395. CURRENCY_SYMBOL
  10396. CRNCYSTR
  10397. MON_DECIMAL_POINT
  10398. MON_THOUSANDS_SEP
  10399. MON_GROUPING
  10400. POSITIVE_SIGN
  10401. NEGATIVE_SIGN
  10402. INT_FRAC_DIGITS
  10403. FRAC_DIGITS
  10404. P_CS_PRECEDES
  10405. P_SEP_BY_SPACE
  10406. N_CS_PRECEDES
  10407. N_SEP_BY_SPACE
  10408. P_SIGN_POSN
  10409. N_SIGN_POSN
  10410. DECIMAL_POINT
  10411. RADIXCHAR
  10412. THOUSANDS_SEP
  10413. THOUSEP
  10414. GROUPING
  10415. YESEXPR
  10416. NOEXPR
  10417. YESSTR
  10418. NOSTR
  10419. CODESET
  10420. LOG_EMERG
  10421. LOG_ALERT
  10422. LOG_CRIT
  10423. LOG_ERR
  10424. LOG_WARNING
  10425. LOG_NOTICE
  10426. LOG_INFO
  10427. LOG_DEBUG
  10428. LOG_KERN
  10429. LOG_USER
  10430. LOG_MAIL
  10431. LOG_DAEMON
  10432. LOG_AUTH
  10433. LOG_SYSLOG
  10434. LOG_LPR
  10435. LOG_NEWS
  10436. LOG_UUCP
  10437. LOG_CRON
  10438. LOG_AUTHPRIV
  10439. LOG_LOCAL0
  10440. LOG_LOCAL1
  10441. LOG_LOCAL2
  10442. LOG_LOCAL3
  10443. LOG_LOCAL4
  10444. LOG_LOCAL5
  10445. LOG_LOCAL6
  10446. LOG_LOCAL7
  10447. LOG_PID
  10448. LOG_CONS
  10449. LOG_ODELAY
  10450. LOG_NDELAY
  10451. LOG_NOWAIT
  10452. LOG_PERROR
  10453. ; predefined variables
  10454. $GLOBALS
  10455. $_SERVER
  10456. $_SERVER['PHP_SELF']
  10457. $_SERVER['argv']
  10458. $_SERVER['argc']
  10459. $_SERVER['GATEWAY_INTERFACE']
  10460. $_SERVER['SERVER_NAME']
  10461. $_SERVER['SERVER_SOFTWARE']
  10462. $_SERVER['SERVER_PROTOCOL']
  10463. $_SERVER['REQUEST_METHOD']
  10464. $_SERVER['QUERY_STRING']
  10465. $_SERVER['DOCUMENT_ROOT']
  10466. $_SERVER['HTTP_ACCEPT']
  10467. $_SERVER['HTTP_ACCEPT_CHARSET']
  10468. $_SERVER['HTTP_ACCEPT_ENCODING']
  10469. $_SERVER['HTTP_ACCEPT_LANGUAGE']
  10470. $_SERVER['HTTP_CONNECTION']
  10471. $_SERVER['HTTP_HOST']
  10472. $_SERVER['HTTP_REFERER']
  10473. $_SERVER['HTTP_USER_AGENT']
  10474. $_SERVER['REMOTE_ADDR']
  10475. $_SERVER['REMOTE_HOST']
  10476. $_SERVER['REMOTE_PORT']
  10477. $_SERVER['SCRIPT_FILENAME']
  10478. $_SERVER['SERVER_ADMIN']
  10479. $_SERVER['SERVER_PORT']
  10480. $_SERVER['SERVER_SIGNATURE']
  10481. $_SERVER['PATH_TRANSLATED']
  10482. $_SERVER['SCRIPT_NAME']
  10483. $_SERVER['REQUEST_URI']
  10484. $_SERVER['PHP_AUTH_USER']
  10485. $_SERVER['PHP_AUTH_PW']
  10486. $_SERVER['AUTH_TYPE']
  10487. $_ENV
  10488. $_GET
  10489. $_POST
  10490. $_COOKIE
  10491. $_REQUEST
  10492. $_FILES
  10493. $_SESSION
  10494. apache_child_terminate()
  10495. apache_get_version()
  10496. apache_lookup_uri()
  10497. apache_note()
  10498. apache_request_headers()
  10499. apache_response_headers()
  10500. apache_setenv()
  10501. ascii2ebcdic()
  10502. ebcdic2ascii()
  10503. getallheaders()
  10504. virtual()
  10505. array_change_key_case()
  10506. array_chunk()
  10507. array_combine()
  10508. array_count_values()
  10509. array_diff_assoc()
  10510. array_diff_uassoc()
  10511. array_diff()
  10512. array_fill()
  10513. array_filter()
  10514. array_flip()
  10515. array_intersect_assoc()
  10516. array_intersect()
  10517. array_key_exists()
  10518. array_keys()
  10519. array_map()
  10520. array_merge_recursive()
  10521. array_merge()
  10522. array_multisort()
  10523. array_pad()
  10524. array_pop()
  10525. array_push()
  10526. array_rand()
  10527. array_reduce()
  10528. array_reverse()
  10529. array_search()
  10530. array_shift()
  10531. array_slice()
  10532. array_splice()
  10533. array_sum()
  10534. array_udiff_assoc()
  10535. array_udiff_uassoc()
  10536. array_udiff()
  10537. array_unique()
  10538. array_unshift()
  10539. array_values()
  10540. array_walk()
  10541. array()
  10542. arsort()
  10543. asort()
  10544. compact()
  10545. count()
  10546. current()
  10547. each()
  10548. end()
  10549. extract()
  10550. in_array()
  10551. key()
  10552. krsort()
  10553. ksort()
  10554. list()
  10555. natcasesort()
  10556. natsort()
  10557. next()
  10558. pos()
  10559. prev()
  10560. range()
  10561. reset()
  10562. rsort()
  10563. shuffle()
  10564. sizeof()
  10565. sort()
  10566. uasort()
  10567. uksort()
  10568. usort()
  10569. aspell_check_raw()
  10570. aspell_check()
  10571. aspell_new()
  10572. aspell_suggest()
  10573. bcadd()
  10574. bccomp()
  10575. bcdiv()
  10576. bcmod()
  10577. bcmul()
  10578. bcpow()
  10579. bcpowmod()
  10580. bcscale()
  10581. bcsqrt()
  10582. bcsub()
  10583. bzclose()
  10584. bzcompress()
  10585. bzdecompress()
  10586. bzerrno()
  10587. bzerror()
  10588. bzerrstr()
  10589. bzflush()
  10590. bzopen()
  10591. bzread()
  10592. bzwrite()
  10593. cal_days_in_month()
  10594. cal_from_jd()
  10595. cal_info()
  10596. cal_to_jd()
  10597. easter_date()
  10598. easter_days()
  10599. FrenchToJD()
  10600. GregorianToJD()
  10601. JDDayOfWeek()
  10602. JDMonthName()
  10603. JDToFrench()
  10604. JDToGregorian()
  10605. jdtojewish()
  10606. JDToJulian()
  10607. jdtounix()
  10608. JewishToJD()
  10609. JulianToJD()
  10610. unixtojd()
  10611. ccvs_add()
  10612. ccvs_auth()
  10613. ccvs_command()
  10614. ccvs_count()
  10615. ccvs_delete()
  10616. ccvs_done()
  10617. ccvs_init()
  10618. ccvs_lookup()
  10619. ccvs_new()
  10620. ccvs_report()
  10621. ccvs_return()
  10622. ccvs_reverse()
  10623. ccvs_sale()
  10624. ccvs_status()
  10625. ccvs_textvalue()
  10626. ccvs_void()
  10627. COM()
  10628. VARIANT()
  10629. com_addref()
  10630. com_get()
  10631. com_invoke()
  10632. com_isenum()
  10633. com_load_typelib()
  10634. com_load()
  10635. com_propget()
  10636. com_propput()
  10637. com_propset()
  10638. com_release()
  10639. com_set()
  10640. call_user_method_array()
  10641. call_user_method()
  10642. class_exists()
  10643. get_class_methods()
  10644. get_class_vars()
  10645. get_class()
  10646. get_declared_classes()
  10647. get_object_vars()
  10648. get_parent_class()
  10649. is_a()
  10650. is_subclass_of()
  10651. method_exists()
  10652. cpdf_add_annotation()
  10653. cpdf_add_outline()
  10654. cpdf_arc()
  10655. cpdf_begin_text()
  10656. cpdf_circle()
  10657. cpdf_clip()
  10658. cpdf_close()
  10659. cpdf_closepath_fill_stroke()
  10660. cpdf_closepath_stroke()
  10661. cpdf_closepath()
  10662. cpdf_continue_text()
  10663. cpdf_curveto()
  10664. cpdf_end_text()
  10665. cpdf_fill_stroke()
  10666. cpdf_fill()
  10667. cpdf_finalize_page()
  10668. cpdf_finalize()
  10669. cpdf_global_set_document_limits()
  10670. cpdf_import_jpeg()
  10671. cpdf_lineto()
  10672. cpdf_moveto()
  10673. cpdf_newpath()
  10674. cpdf_open()
  10675. cpdf_output_buffer()
  10676. cpdf_page_init()
  10677. cpdf_place_inline_image()
  10678. cpdf_rect()
  10679. cpdf_restore()
  10680. cpdf_rlineto()
  10681. cpdf_rmoveto()
  10682. cpdf_rotate_text()
  10683. cpdf_rotate()
  10684. cpdf_save_to_file()
  10685. cpdf_save()
  10686. cpdf_scale()
  10687. cpdf_set_action_url()
  10688. cpdf_set_char_spacing()
  10689. cpdf_set_creator()
  10690. cpdf_set_current_page()
  10691. cpdf_set_font_directories()
  10692. cpdf_set_font_map_file()
  10693. cpdf_set_font()
  10694. cpdf_set_horiz_scaling()
  10695. cpdf_set_keywords()
  10696. cpdf_set_leading()
  10697. cpdf_set_page_animation()
  10698. cpdf_set_subject()
  10699. cpdf_set_text_matrix()
  10700. cpdf_set_text_pos()
  10701. cpdf_set_text_rendering()
  10702. cpdf_set_text_rise()
  10703. cpdf_set_title()
  10704. cpdf_set_viewer_preferences()
  10705. cpdf_set_word_spacing()
  10706. cpdf_setdash()
  10707. cpdf_setflat()
  10708. cpdf_setgray_fill()
  10709. cpdf_setgray_stroke()
  10710. cpdf_setgray()
  10711. cpdf_setlinecap()
  10712. cpdf_setlinejoin()
  10713. cpdf_setlinewidth()
  10714. cpdf_setmiterlimit()
  10715. cpdf_setrgbcolor_fill()
  10716. cpdf_setrgbcolor_stroke()
  10717. cpdf_setrgbcolor()
  10718. cpdf_show_xy()
  10719. cpdf_show()
  10720. cpdf_stringwidth()
  10721. cpdf_stroke()
  10722. cpdf_text()
  10723. cpdf_translate()
  10724. crack_check()
  10725. crack_closedict()
  10726. crack_getlastmessage()
  10727. crack_opendict()
  10728. curl_close()
  10729. curl_errno()
  10730. curl_error()
  10731. curl_exec()
  10732. curl_getinfo()
  10733. curl_init()
  10734. curl_multi_add_handle()
  10735. curl_multi_close()
  10736. curl_multi_exec()
  10737. curl_multi_getcontent()
  10738. curl_multi_info_read()
  10739. curl_multi_init()
  10740. curl_multi_remove_handle()
  10741. curl_multi_select()
  10742. curl_setopt()
  10743. curl_version()
  10744. cybercash_base64_decode()
  10745. cybercash_base64_encode()
  10746. cybercash_decr()
  10747. cybercash_encr()
  10748. cyrus_authenticate()
  10749. cyrus_bind()
  10750. cyrus_close()
  10751. cyrus_connect()
  10752. cyrus_query()
  10753. cyrus_unbind()
  10754. ctype_alnum()
  10755. ctype_alpha()
  10756. ctype_cntrl()
  10757. ctype_digit()
  10758. ctype_graph()
  10759. ctype_lower()
  10760. ctype_print()
  10761. ctype_punct()
  10762. ctype_space()
  10763. ctype_upper()
  10764. ctype_xdigit()
  10765. dba_close()
  10766. dba_delete()
  10767. dba_exists()
  10768. dba_fetch()
  10769. dba_firstkey()
  10770. dba_handlers()
  10771. dba_insert()
  10772. dba_key_split()
  10773. dba_list()
  10774. dba_nextkey()
  10775. dba_open()
  10776. dba_optimize()
  10777. dba_popen()
  10778. dba_replace()
  10779. dba_sync()
  10780. checkdate()
  10781. date()
  10782. getdate()
  10783. gettimeofday()
  10784. gmdate()
  10785. gmmktime()
  10786. gmstrftime()
  10787. localtime()
  10788. microtime()
  10789. mktime()
  10790. strftime()
  10791. strtotime()
  10792. time()
  10793. dbase_add_record()
  10794. dbase_close()
  10795. dbase_create()
  10796. dbase_delete_record()
  10797. dbase_get_header_info()
  10798. dbase_get_record_with_names()
  10799. dbase_get_record()
  10800. dbase_numfields()
  10801. dbase_numrecords()
  10802. dbase_open()
  10803. dbase_pack()
  10804. dbase_replace_record()
  10805. dblist()
  10806. dbmclose()
  10807. dbmdelete()
  10808. dbmexists()
  10809. dbmfetch()
  10810. dbmfirstkey()
  10811. dbminsert()
  10812. dbmnextkey()
  10813. dbmopen()
  10814. dbmreplace()
  10815. dbx_close()
  10816. dbx_compare()
  10817. dbx_connect()
  10818. dbx_error()
  10819. dbx_escape_string()
  10820. dbx_fetch_row()
  10821. dbx_query()
  10822. dbx_sort()
  10823. dbplus_add()
  10824. dbplus_aql()
  10825. dbplus_chdir()
  10826. dbplus_close()
  10827. dbplus_curr()
  10828. dbplus_errcode()
  10829. dbplus_errno()
  10830. dbplus_find()
  10831. dbplus_first()
  10832. dbplus_flush()
  10833. dbplus_freealllocks()
  10834. dbplus_freelock()
  10835. dbplus_freerlocks()
  10836. dbplus_getlock()
  10837. dbplus_getunique()
  10838. dbplus_info()
  10839. dbplus_last()
  10840. dbplus_lockrel()
  10841. dbplus_next()
  10842. dbplus_open()
  10843. dbplus_prev()
  10844. dbplus_rchperm()
  10845. dbplus_rcreate()
  10846. dbplus_rcrtexact()
  10847. dbplus_rcrtlike()
  10848. dbplus_resolve()
  10849. dbplus_restorepos()
  10850. dbplus_rkeys()
  10851. dbplus_ropen()
  10852. dbplus_rquery()
  10853. dbplus_rrename()
  10854. dbplus_rsecindex()
  10855. dbplus_runlink()
  10856. dbplus_rzap()
  10857. dbplus_savepos()
  10858. dbplus_setindex()
  10859. dbplus_setindexbynumber()
  10860. dbplus_sql()
  10861. dbplus_tcl()
  10862. dbplus_tremove()
  10863. dbplus_undo()
  10864. dbplus_undoprepare()
  10865. dbplus_unlockrel()
  10866. dbplus_unselect()
  10867. dbplus_update()
  10868. dbplus_xlockrel()
  10869. dbplus_xunlockrel()
  10870. dio_close()
  10871. dio_fcntl()
  10872. dio_open()
  10873. dio_read()
  10874. dio_seek()
  10875. dio_stat()
  10876. dio_tcsetattr()
  10877. dio_truncate()
  10878. dio_write()
  10879. chdir()
  10880. chroot()
  10881. dir()
  10882. closedir()
  10883. getcwd()
  10884. opendir()
  10885. readdir()
  10886. rewinddir()
  10887. scandir()
  10888. DomAttribute->name()
  10889. DomAttribute->specified()
  10890. DomAttribute->value()
  10891. DomDocument->add_root [deprecated]()
  10892. DomDocument->create_attribute()
  10893. DomDocument->create_cdata_section()
  10894. DomDocument->create_comment()
  10895. DomDocument->create_element_ns()
  10896. DomDocument->create_element()
  10897. DomDocument->create_entity_reference()
  10898. DomDocument->create_processing_instruction()
  10899. DomDocument->create_text_node()
  10900. DomDocument->doctype()
  10901. DomDocument->document_element()
  10902. DomDocument->dump_file()
  10903. DomDocument->dump_mem()
  10904. DomDocument->get_element_by_id()
  10905. DomDocument->get_elements_by_tagname()
  10906. DomDocument->html_dump_mem()
  10907. DomDocument->xinclude()
  10908. DomDocumentType->entities()
  10909. DomDocumentType->internal_subset()
  10910. DomDocumentType->name()
  10911. DomDocumentType->notations()
  10912. DomDocumentType->public_id()
  10913. DomDocumentType->system_id()
  10914. DomElement->get_attribute_node()
  10915. DomElement->get_attribute()
  10916. DomElement->get_elements_by_tagname()
  10917. DomElement->has_attribute()
  10918. DomElement->remove_attribute()
  10919. DomElement->set_attribute()
  10920. DomElement->tagname()
  10921. DomNode->add_namespace()
  10922. DomNode->append_child()
  10923. DomNode->append_sibling()
  10924. DomNode->attributes()
  10925. DomNode->child_nodes()
  10926. DomNode->clone_node()
  10927. DomNode->dump_node()
  10928. DomNode->first_child()
  10929. DomNode->get_content()
  10930. DomNode->has_attributes()
  10931. DomNode->has_child_nodes()
  10932. DomNode->insert_before()
  10933. DomNode->is_blank_node()
  10934. DomNode->last_child()
  10935. DomNode->next_sibling()
  10936. DomNode->node_name()
  10937. DomNode->node_type()
  10938. DomNode->node_value()
  10939. DomNode->owner_document()
  10940. DomNode->parent_node()
  10941. DomNode->prefix()
  10942. DomNode->previous_sibling()
  10943. DomNode->remove_child()
  10944. DomNode->replace_child()
  10945. DomNode->replace_node()
  10946. DomNode->set_content()
  10947. DomNode->set_name()
  10948. DomNode->set_namespace()
  10949. DomNode->unlink_node()
  10950. DomProcessingInstruction->data()
  10951. DomProcessingInstruction->target()
  10952. DomXsltStylesheet->process()
  10953. DomXsltStylesheet->result_dump_file()
  10954. DomXsltStylesheet->result_dump_mem()
  10955. domxml_new_doc()
  10956. domxml_open_file()
  10957. domxml_open_mem()
  10958. domxml_version()
  10959. domxml_xmltree()
  10960. domxml_xslt_stylesheet_doc()
  10961. domxml_xslt_stylesheet_file()
  10962. domxml_xslt_stylesheet()
  10963. xpath_eval_expression()
  10964. xpath_eval()
  10965. xpath_new_context()
  10966. xptr_eval()
  10967. xptr_new_context()
  10968. dotnet_load()
  10969. debug_backtrace()
  10970. debug_print_backtrace()
  10971. error_log()
  10972. error_reporting()
  10973. restore_error_handler()
  10974. set_error_handler()
  10975. trigger_error()
  10976. user_error()
  10977. fam_cancel_monitor()
  10978. fam_close()
  10979. fam_monitor_collection()
  10980. fam_monitor_directory()
  10981. fam_monitor_file()
  10982. fam_next_event()
  10983. fam_open()
  10984. fam_pending()
  10985. fam_resume_monitor()
  10986. fam_suspend_monitor()
  10987. fbsql_affected_rows()
  10988. fbsql_autocommit()
  10989. fbsql_change_user()
  10990. fbsql_close()
  10991. fbsql_commit()
  10992. fbsql_connect()
  10993. fbsql_create_blob()
  10994. fbsql_create_clob()
  10995. fbsql_create_db()
  10996. fbsql_data_seek()
  10997. fbsql_database_password()
  10998. fbsql_database()
  10999. fbsql_db_query()
  11000. fbsql_db_status()
  11001. fbsql_drop_db()
  11002. fbsql_errno()
  11003. fbsql_error()
  11004. fbsql_fetch_array()
  11005. fbsql_fetch_assoc()
  11006. fbsql_fetch_field()
  11007. fbsql_fetch_lengths()
  11008. fbsql_fetch_object()
  11009. fbsql_fetch_row()
  11010. fbsql_field_flags()
  11011. fbsql_field_len()
  11012. fbsql_field_name()
  11013. fbsql_field_seek()
  11014. fbsql_field_table()
  11015. fbsql_field_type()
  11016. fbsql_free_result()
  11017. fbsql_get_autostart_info()
  11018. fbsql_hostname()
  11019. fbsql_insert_id()
  11020. fbsql_list_dbs()
  11021. fbsql_list_fields()
  11022. fbsql_list_tables()
  11023. fbsql_next_result()
  11024. fbsql_num_fields()
  11025. fbsql_num_rows()
  11026. fbsql_password()
  11027. fbsql_pconnect()
  11028. fbsql_query()
  11029. fbsql_read_blob()
  11030. fbsql_read_clob()
  11031. fbsql_result()
  11032. fbsql_rollback()
  11033. fbsql_select_db()
  11034. fbsql_set_lob_mode()
  11035. fbsql_set_transaction()
  11036. fbsql_start_db()
  11037. fbsql_stop_db()
  11038. fbsql_tablename()
  11039. fbsql_username()
  11040. fbsql_warnings()
  11041. filepro_fieldcount()
  11042. filepro_fieldname()
  11043. filepro_fieldtype()
  11044. filepro_fieldwidth()
  11045. filepro_retrieve()
  11046. filepro_rowcount()
  11047. filepro()
  11048. basename()
  11049. chgrp()
  11050. chmod()
  11051. chown()
  11052. clearstatcache()
  11053. copy()
  11054. delete()
  11055. dirname()
  11056. disk_free_space()
  11057. disk_total_space()
  11058. diskfreespace()
  11059. fclose()
  11060. feof()
  11061. fflush()
  11062. fgetc()
  11063. fgetcsv()
  11064. fgets()
  11065. fgetss()
  11066. file_exists()
  11067. file_get_contents()
  11068. file_put_contents()
  11069. file()
  11070. fileatime()
  11071. filectime()
  11072. filegroup()
  11073. fileinode()
  11074. filemtime()
  11075. fileowner()
  11076. fileperms()
  11077. filesize()
  11078. filetype()
  11079. flock()
  11080. fnmatch()
  11081. fopen()
  11082. fpassthru()
  11083. fputs()
  11084. fread()
  11085. fscanf()
  11086. fseek()
  11087. fstat()
  11088. ftell()
  11089. ftruncate()
  11090. fwrite()
  11091. glob()
  11092. is_dir()
  11093. is_executable()
  11094. is_file()
  11095. is_link()
  11096. is_readable()
  11097. is_uploaded_file()
  11098. is_writable()
  11099. is_writeable()
  11100. link()
  11101. linkinfo()
  11102. lstat()
  11103. mkdir()
  11104. move_uploaded_file()
  11105. parse_ini_file()
  11106. pathinfo()
  11107. pclose()
  11108. popen()
  11109. readfile()
  11110. readlink()
  11111. realpath()
  11112. rename()
  11113. rewind()
  11114. rmdir()
  11115. set_file_buffer()
  11116. stat()
  11117. symlink()
  11118. tempnam()
  11119. tmpfile()
  11120. touch()
  11121. umask()
  11122. unlink()
  11123. fdf_add_doc_javascript()
  11124. fdf_add_template()
  11125. fdf_close()
  11126. fdf_create()
  11127. fdf_enum_values()
  11128. fdf_errno()
  11129. fdf_error()
  11130. fdf_get_ap()
  11131. fdf_get_attachment()
  11132. fdf_get_encoding()
  11133. fdf_get_file()
  11134. fdf_get_flags()
  11135. fdf_get_opt()
  11136. fdf_get_status()
  11137. fdf_get_value()
  11138. fdf_get_version()
  11139. fdf_header()
  11140. fdf_next_field_name()
  11141. fdf_open_string()
  11142. fdf_open()
  11143. fdf_remove_item()
  11144. fdf_save_string()
  11145. fdf_save()
  11146. fdf_set_ap()
  11147. fdf_set_encoding()
  11148. fdf_set_file()
  11149. fdf_set_flags()
  11150. fdf_set_javascript_action()
  11151. fdf_set_opt()
  11152. fdf_set_status()
  11153. fdf_set_submit_form_action()
  11154. fdf_set_target_frame()
  11155. fdf_set_value()
  11156. fdf_set_version()
  11157. fribidi_log2vis()
  11158. ftp_alloc()
  11159. ftp_cdup()
  11160. ftp_chdir()
  11161. ftp_chmod()
  11162. ftp_close()
  11163. ftp_connect()
  11164. ftp_delete()
  11165. ftp_exec()
  11166. ftp_fget()
  11167. ftp_fput()
  11168. ftp_get_option()
  11169. ftp_get()
  11170. ftp_login()
  11171. ftp_mdtm()
  11172. ftp_mkdir()
  11173. ftp_nb_continue()
  11174. ftp_nb_fget()
  11175. ftp_nb_fput()
  11176. ftp_nb_get()
  11177. ftp_nb_put()
  11178. ftp_nlist()
  11179. ftp_pasv()
  11180. ftp_put()
  11181. ftp_pwd()
  11182. ftp_quit()
  11183. ftp_raw()
  11184. ftp_rawlist()
  11185. ftp_rename()
  11186. ftp_rmdir()
  11187. ftp_set_option()
  11188. ftp_site()
  11189. ftp_size()
  11190. ftp_ssl_connect()
  11191. ftp_systype()
  11192. call_user_func_array()
  11193. call_user_func()
  11194. create_function()
  11195. func_get_arg()
  11196. func_get_args()
  11197. func_num_args()
  11198. function_exists()
  11199. get_defined_functions()
  11200. register_shutdown_function()
  11201. register_tick_function()
  11202. unregister_tick_function()
  11203. bind_textdomain_codeset()
  11204. bindtextdomain()
  11205. dcgettext()
  11206. dcngettext()
  11207. dgettext()
  11208. dngettext()
  11209. gettext()
  11210. ngettext()
  11211. textdomain()
  11212. gmp_abs()
  11213. gmp_add()
  11214. gmp_and()
  11215. gmp_clrbit()
  11216. gmp_cmp()
  11217. gmp_com()
  11218. gmp_div_q()
  11219. gmp_div_qr()
  11220. gmp_div_r()
  11221. gmp_div()
  11222. gmp_divexact()
  11223. gmp_fact()
  11224. gmp_gcd()
  11225. gmp_gcdext()
  11226. gmp_hamdist()
  11227. gmp_init()
  11228. gmp_intval()
  11229. gmp_invert()
  11230. gmp_jacobi()
  11231. gmp_legendre()
  11232. gmp_mod()
  11233. gmp_mul()
  11234. gmp_neg()
  11235. gmp_or()
  11236. gmp_perfect_square()
  11237. gmp_popcount()
  11238. gmp_pow()
  11239. gmp_powm()
  11240. gmp_prob_prime()
  11241. gmp_random()
  11242. gmp_scan0()
  11243. gmp_scan1()
  11244. gmp_setbit()
  11245. gmp_sign()
  11246. gmp_sqrt()
  11247. gmp_sqrtrm()
  11248. gmp_strval()
  11249. gmp_sub()
  11250. gmp_xor()
  11251. header()
  11252. headers_list()
  11253. headers_sent()
  11254. setcookie()
  11255. hw_Array2Objrec()
  11256. hw_changeobject()
  11257. hw_Children()
  11258. hw_ChildrenObj()
  11259. hw_Close()
  11260. hw_Connect()
  11261. hw_connection_info()
  11262. hw_cp()
  11263. hw_Deleteobject()
  11264. hw_DocByAnchor()
  11265. hw_DocByAnchorObj()
  11266. hw_Document_Attributes()
  11267. hw_Document_BodyTag()
  11268. hw_Document_Content()
  11269. hw_Document_SetContent()
  11270. hw_Document_Size()
  11271. hw_dummy()
  11272. hw_EditText()
  11273. hw_Error()
  11274. hw_ErrorMsg()
  11275. hw_Free_Document()
  11276. hw_GetAnchors()
  11277. hw_GetAnchorsObj()
  11278. hw_GetAndLock()
  11279. hw_GetChildColl()
  11280. hw_GetChildCollObj()
  11281. hw_GetChildDocColl()
  11282. hw_GetChildDocCollObj()
  11283. hw_GetObject()
  11284. hw_GetObjectByQuery()
  11285. hw_GetObjectByQueryColl()
  11286. hw_GetObjectByQueryCollObj()
  11287. hw_GetObjectByQueryObj()
  11288. hw_GetParents()
  11289. hw_GetParentsObj()
  11290. hw_getrellink()
  11291. hw_GetRemote()
  11292. hw_getremotechildren()
  11293. hw_GetSrcByDestObj()
  11294. hw_GetText()
  11295. hw_getusername()
  11296. hw_Identify()
  11297. hw_InCollections()
  11298. hw_Info()
  11299. hw_InsColl()
  11300. hw_InsDoc()
  11301. hw_insertanchors()
  11302. hw_InsertDocument()
  11303. hw_InsertObject()
  11304. hw_mapid()
  11305. hw_Modifyobject()
  11306. hw_mv()
  11307. hw_New_Document()
  11308. hw_objrec2array()
  11309. hw_Output_Document()
  11310. hw_pConnect()
  11311. hw_PipeDocument()
  11312. hw_Root()
  11313. hw_setlinkroot()
  11314. hw_stat()
  11315. hw_Unlock()
  11316. hw_Who()
  11317. hw_api_attribute->key()
  11318. hw_api_attribute->langdepvalue()
  11319. hw_api_attribute->value()
  11320. hw_api_attribute->values()
  11321. hw_api_attribute()
  11322. hw_api->checkin()
  11323. hw_api->checkout()
  11324. hw_api->children()
  11325. hw_api_content->mimetype()
  11326. hw_api_content->read()
  11327. hw_api->content()
  11328. hw_api->copy()
  11329. hw_api->dbstat()
  11330. hw_api->dcstat()
  11331. hw_api->dstanchors()
  11332. hw_api->dstofsrcanchors()
  11333. hw_api_error->count()
  11334. hw_api_error->reason()
  11335. hw_api->find()
  11336. hw_api->ftstat()
  11337. hwapi_hgcsp()
  11338. hw_api->hwstat()
  11339. hw_api->identify()
  11340. hw_api->info()
  11341. hw_api->insert()
  11342. hw_api->insertanchor()
  11343. hw_api->insertcollection()
  11344. hw_api->insertdocument()
  11345. hw_api->link()
  11346. hw_api->lock()
  11347. hw_api->move()
  11348. hw_api_content()
  11349. hw_api_object->assign()
  11350. hw_api_object->attreditable()
  11351. hw_api_object->count()
  11352. hw_api_object->insert()
  11353. hw_api_object()
  11354. hw_api_object->remove()
  11355. hw_api_object->title()
  11356. hw_api_object->value()
  11357. hw_api->object()
  11358. hw_api->objectbyanchor()
  11359. hw_api->parents()
  11360. hw_api_reason->description()
  11361. hw_api_reason->type()
  11362. hw_api->remove()
  11363. hw_api->replace()
  11364. hw_api->setcommitedversion()
  11365. hw_api->srcanchors()
  11366. hw_api->srcsofdst()
  11367. hw_api->unlock()
  11368. hw_api->user()
  11369. hw_api->userlist()
  11370. iconv_get_encoding()
  11371. iconv_mime_decode()
  11372. iconv_mime_encode()
  11373. iconv_set_encoding()
  11374. iconv_strlen()
  11375. iconv_strpos()
  11376. iconv_strrpos()
  11377. iconv_substr()
  11378. iconv()
  11379. ob_iconv_handler()
  11380. exif_imagetype()
  11381. exif_read_data()
  11382. exif_thumbnail()
  11383. gd_info()
  11384. getimagesize()
  11385. image_type_to_mime_type()
  11386. image2wbmp()
  11387. imagealphablending()
  11388. imageantialias()
  11389. imagearc()
  11390. imagechar()
  11391. imagecharup()
  11392. imagecolorallocate()
  11393. imagecolorallocatealpha()
  11394. imagecolorat()
  11395. imagecolorclosest()
  11396. imagecolorclosestalpha()
  11397. imagecolorclosesthwb()
  11398. imagecolordeallocate()
  11399. imagecolorexact()
  11400. imagecolorexactalpha()
  11401. imagecolormatch()
  11402. imagecolorresolve()
  11403. imagecolorresolvealpha()
  11404. imagecolorset()
  11405. imagecolorsforindex()
  11406. imagecolorstotal()
  11407. imagecolortransparent()
  11408. imagecopy()
  11409. imagecopymerge()
  11410. imagecopymergegray()
  11411. imagecopyresampled()
  11412. imagecopyresized()
  11413. imagecreate()
  11414. imagecreatefromgd2()
  11415. imagecreatefromgd2part()
  11416. imagecreatefromgd()
  11417. imagecreatefromgif()
  11418. imagecreatefromjpeg()
  11419. imagecreatefrompng()
  11420. imagecreatefromstring()
  11421. imagecreatefromwbmp()
  11422. imagecreatefromxbm()
  11423. imagecreatefromxpm()
  11424. imagecreatetruecolor()
  11425. imagedashedline()
  11426. imagedestroy()
  11427. imageellipse()
  11428. imagefill()
  11429. imagefilledarc()
  11430. imagefilledellipse()
  11431. imagefilledpolygon()
  11432. imagefilledrectangle()
  11433. imagefilltoborder()
  11434. imagefontheight()
  11435. imagefontwidth()
  11436. imageftbbox()
  11437. imagefttext()
  11438. imagegammacorrect()
  11439. imagegd2()
  11440. imagegd()
  11441. imagegif()
  11442. imageinterlace()
  11443. imageistruecolor()
  11444. imagejpeg()
  11445. imageline()
  11446. imageloadfont()
  11447. imagepalettecopy()
  11448. imagepng()
  11449. imagepolygon()
  11450. imagepsbbox()
  11451. imagepscopyfont()
  11452. imagepsencodefont()
  11453. imagepsextendfont()
  11454. imagepsfreefont()
  11455. imagepsloadfont()
  11456. imagepsslantfont()
  11457. imagepstext()
  11458. imagerectangle()
  11459. imagerotate()
  11460. imagesavealpha()
  11461. imagesetbrush()
  11462. imagesetpixel()
  11463. imagesetstyle()
  11464. imagesetthickness()
  11465. imagesettile()
  11466. imagestring()
  11467. imagestringup()
  11468. imagesx()
  11469. imagesy()
  11470. imagetruecolortopalette()
  11471. imagettfbbox()
  11472. imagettftext()
  11473. imagetypes()
  11474. imagewbmp()
  11475. iptcembed()
  11476. iptcparse()
  11477. jpeg2wbmp()
  11478. png2wbmp()
  11479. read_exif_data()
  11480. imap_8bit()
  11481. imap_alerts()
  11482. imap_append()
  11483. imap_base64()
  11484. imap_binary()
  11485. imap_body()
  11486. imap_bodystruct()
  11487. imap_check()
  11488. imap_clearflag_full()
  11489. imap_close()
  11490. imap_createmailbox()
  11491. imap_delete()
  11492. imap_deletemailbox()
  11493. imap_errors()
  11494. imap_expunge()
  11495. imap_fetch_overview()
  11496. imap_fetchbody()
  11497. imap_fetchheader()
  11498. imap_fetchstructure()
  11499. imap_get_quota()
  11500. imap_get_quotaroot()
  11501. imap_getacl()
  11502. imap_getmailboxes()
  11503. imap_getsubscribed()
  11504. imap_header()
  11505. imap_headerinfo()
  11506. imap_headers()
  11507. imap_last_error()
  11508. imap_list()
  11509. imap_listmailbox()
  11510. imap_listscan()
  11511. imap_listsubscribed()
  11512. imap_lsub()
  11513. imap_mail_compose()
  11514. imap_mail_copy()
  11515. imap_mail_move()
  11516. imap_mail()
  11517. imap_mailboxmsginfo()
  11518. imap_mime_header_decode()
  11519. imap_msgno()
  11520. imap_num_msg()
  11521. imap_num_recent()
  11522. imap_open()
  11523. imap_ping()
  11524. imap_qprint()
  11525. imap_renamemailbox()
  11526. imap_reopen()
  11527. imap_rfc822_parse_adrlist()
  11528. imap_rfc822_parse_headers()
  11529. imap_rfc822_write_address()
  11530. imap_scanmailbox()
  11531. imap_search()
  11532. imap_set_quota()
  11533. imap_setacl()
  11534. imap_setflag_full()
  11535. imap_sort()
  11536. imap_status()
  11537. imap_subscribe()
  11538. imap_thread()
  11539. imap_timeout()
  11540. imap_uid()
  11541. imap_undelete()
  11542. imap_unsubscribe()
  11543. imap_utf7_decode()
  11544. imap_utf7_encode()
  11545. imap_utf8()
  11546. ifx_affected_rows()
  11547. ifx_blobinfile_mode()
  11548. ifx_byteasvarchar()
  11549. ifx_close()
  11550. ifx_connect()
  11551. ifx_copy_blob()
  11552. ifx_create_blob()
  11553. ifx_create_char()
  11554. ifx_do()
  11555. ifx_error()
  11556. ifx_errormsg()
  11557. ifx_fetch_row()
  11558. ifx_fieldproperties()
  11559. ifx_fieldtypes()
  11560. ifx_free_blob()
  11561. ifx_free_char()
  11562. ifx_free_result()
  11563. ifx_get_blob()
  11564. ifx_get_char()
  11565. ifx_getsqlca()
  11566. ifx_htmltbl_result()
  11567. ifx_nullformat()
  11568. ifx_num_fields()
  11569. ifx_num_rows()
  11570. ifx_pconnect()
  11571. ifx_prepare()
  11572. ifx_query()
  11573. ifx_textasvarchar()
  11574. ifx_update_blob()
  11575. ifx_update_char()
  11576. ifxus_close_slob()
  11577. ifxus_create_slob()
  11578. ifxus_free_slob()
  11579. ifxus_open_slob()
  11580. ifxus_read_slob()
  11581. ifxus_seek_slob()
  11582. ifxus_tell_slob()
  11583. ifxus_write_slob()
  11584. ibase_add_user()
  11585. ibase_affected_rows()
  11586. ibase_blob_add()
  11587. ibase_blob_cancel()
  11588. ibase_blob_close()
  11589. ibase_blob_create()
  11590. ibase_blob_echo()
  11591. ibase_blob_get()
  11592. ibase_blob_import()
  11593. ibase_blob_info()
  11594. ibase_blob_open()
  11595. ibase_close()
  11596. ibase_commit_ret()
  11597. ibase_commit()
  11598. ibase_connect()
  11599. ibase_delete_user()
  11600. ibase_drop_db()
  11601. ibase_errcode()
  11602. ibase_errmsg()
  11603. ibase_execute()
  11604. ibase_fetch_assoc()
  11605. ibase_fetch_object()
  11606. ibase_fetch_row()
  11607. ibase_field_info()
  11608. ibase_free_event_handler()
  11609. ibase_free_query()
  11610. ibase_free_result()
  11611. ibase_gen_id()
  11612. ibase_modify_user()
  11613. ibase_name_result()
  11614. ibase_num_fields()
  11615. ibase_num_params()
  11616. ibase_param_info()
  11617. ibase_pconnect()
  11618. ibase_prepare()
  11619. ibase_query()
  11620. ibase_rollback_ret()
  11621. ibase_rollback()
  11622. ibase_set_event_handler()
  11623. ibase_timefmt()
  11624. ibase_trans()
  11625. ibase_wait_event()
  11626. ingres_autocommit()
  11627. ingres_close()
  11628. ingres_commit()
  11629. ingres_connect()
  11630. ingres_fetch_array()
  11631. ingres_fetch_object()
  11632. ingres_fetch_row()
  11633. ingres_field_length()
  11634. ingres_field_name()
  11635. ingres_field_nullable()
  11636. ingres_field_precision()
  11637. ingres_field_scale()
  11638. ingres_field_type()
  11639. ingres_num_fields()
  11640. ingres_num_rows()
  11641. ingres_pconnect()
  11642. ingres_query()
  11643. ingres_rollback()
  11644. ircg_channel_mode()
  11645. ircg_disconnect()
  11646. ircg_fetch_error_msg()
  11647. ircg_get_username()
  11648. ircg_html_encode()
  11649. ircg_ignore_add()
  11650. ircg_ignore_del()
  11651. ircg_is_conn_alive()
  11652. ircg_join()
  11653. ircg_kick()
  11654. ircg_lookup_format_messages()
  11655. ircg_msg()
  11656. ircg_nick()
  11657. ircg_nickname_escape()
  11658. ircg_nickname_unescape()
  11659. ircg_notice()
  11660. ircg_part()
  11661. ircg_pconnect()
  11662. ircg_register_format_messages()
  11663. ircg_set_current()
  11664. ircg_set_file()
  11665. ircg_set_on_die()
  11666. ircg_topic()
  11667. ircg_whois()
  11668. java_last_exception_clear()
  11669. java_last_exception_get()
  11670. ldap_8859_to_t61()
  11671. ldap_add()
  11672. ldap_bind()
  11673. ldap_close()
  11674. ldap_compare()
  11675. ldap_connect()
  11676. ldap_count_entries()
  11677. ldap_delete()
  11678. ldap_dn2ufn()
  11679. ldap_err2str()
  11680. ldap_errno()
  11681. ldap_error()
  11682. ldap_explode_dn()
  11683. ldap_first_attribute()
  11684. ldap_first_entry()
  11685. ldap_first_reference()
  11686. ldap_free_result()
  11687. ldap_get_attributes()
  11688. ldap_get_dn()
  11689. ldap_get_entries()
  11690. ldap_get_option()
  11691. ldap_get_values_len()
  11692. ldap_get_values()
  11693. ldap_list()
  11694. ldap_mod_add()
  11695. ldap_mod_del()
  11696. ldap_mod_replace()
  11697. ldap_modify()
  11698. ldap_next_attribute()
  11699. ldap_next_entry()
  11700. ldap_next_reference()
  11701. ldap_parse_reference()
  11702. ldap_parse_result()
  11703. ldap_read()
  11704. ldap_rename()
  11705. ldap_search()
  11706. ldap_set_option()
  11707. ldap_set_rebind_proc()
  11708. ldap_sort()
  11709. ldap_start_tls()
  11710. ldap_t61_to_8859()
  11711. ldap_unbind()
  11712. ezmlm_hash()
  11713. mail()
  11714. mailparse_determine_best_xfer_encoding()
  11715. mailparse_msg_create()
  11716. mailparse_msg_extract_part_file()
  11717. mailparse_msg_extract_part()
  11718. mailparse_msg_free()
  11719. mailparse_msg_get_part_data()
  11720. mailparse_msg_get_part()
  11721. mailparse_msg_get_structure()
  11722. mailparse_msg_parse_file()
  11723. mailparse_msg_parse()
  11724. mailparse_rfc822_parse_addresses()
  11725. mailparse_stream_encode()
  11726. mailparse_uudecode_all()
  11727. abs()
  11728. acos()
  11729. acosh()
  11730. asin()
  11731. asinh()
  11732. atan2()
  11733. atan()
  11734. atanh()
  11735. base_convert()
  11736. bindec()
  11737. ceil()
  11738. cos()
  11739. cosh()
  11740. decbin()
  11741. dechex()
  11742. decoct()
  11743. deg2rad()
  11744. exp()
  11745. expm1()
  11746. floor()
  11747. fmod()
  11748. getrandmax()
  11749. hexdec()
  11750. hypot()
  11751. is_finite()
  11752. is_infinite()
  11753. is_nan()
  11754. lcg_value()
  11755. log10()
  11756. log1p()
  11757. log()
  11758. max()
  11759. min()
  11760. mt_getrandmax()
  11761. mt_rand()
  11762. mt_srand()
  11763. octdec()
  11764. pi()
  11765. pow()
  11766. rad2deg()
  11767. rand()
  11768. round()
  11769. sin()
  11770. sinh()
  11771. sqrt()
  11772. srand()
  11773. tan()
  11774. tanh()
  11775. mb_convert_case()
  11776. mb_convert_encoding()
  11777. mb_convert_kana()
  11778. mb_convert_variables()
  11779. mb_decode_mimeheader()
  11780. mb_decode_numericentity()
  11781. mb_detect_encoding()
  11782. mb_detect_order()
  11783. mb_encode_mimeheader()
  11784. mb_encode_numericentity()
  11785. mb_ereg_match()
  11786. mb_ereg_replace()
  11787. mb_ereg_search_getpos()
  11788. mb_ereg_search_getregs()
  11789. mb_ereg_search_init()
  11790. mb_ereg_search_pos()
  11791. mb_ereg_search_regs()
  11792. mb_ereg_search_setpos()
  11793. mb_ereg_search()
  11794. mb_ereg()
  11795. mb_eregi_replace()
  11796. mb_eregi()
  11797. mb_get_info()
  11798. mb_http_input()
  11799. mb_http_output()
  11800. mb_internal_encoding()
  11801. mb_language()
  11802. mb_output_handler()
  11803. mb_parse_str()
  11804. mb_preferred_mime_name()
  11805. mb_regex_encoding()
  11806. mb_regex_set_options()
  11807. mb_send_mail()
  11808. mb_split()
  11809. mb_strcut()
  11810. mb_strimwidth()
  11811. mb_strlen()
  11812. mb_strpos()
  11813. mb_strrpos()
  11814. mb_strtolower()
  11815. mb_strtoupper()
  11816. mb_strwidth()
  11817. mb_substitute_character()
  11818. mb_substr_count()
  11819. mb_substr()
  11820. mcal_append_event()
  11821. mcal_close()
  11822. mcal_create_calendar()
  11823. mcal_date_compare()
  11824. mcal_date_valid()
  11825. mcal_day_of_week()
  11826. mcal_day_of_year()
  11827. mcal_days_in_month()
  11828. mcal_delete_calendar()
  11829. mcal_delete_event()
  11830. mcal_event_add_attribute()
  11831. mcal_event_init()
  11832. mcal_event_set_alarm()
  11833. mcal_event_set_category()
  11834. mcal_event_set_class()
  11835. mcal_event_set_description()
  11836. mcal_event_set_end()
  11837. mcal_event_set_recur_daily()
  11838. mcal_event_set_recur_monthly_mday()
  11839. mcal_event_set_recur_monthly_wday()
  11840. mcal_event_set_recur_none()
  11841. mcal_event_set_recur_weekly()
  11842. mcal_event_set_recur_yearly()
  11843. mcal_event_set_start()
  11844. mcal_event_set_title()
  11845. mcal_expunge()
  11846. mcal_fetch_current_stream_event()
  11847. mcal_fetch_event()
  11848. mcal_is_leap_year()
  11849. mcal_list_alarms()
  11850. mcal_list_events()
  11851. mcal_next_recurrence()
  11852. mcal_open()
  11853. mcal_popen()
  11854. mcal_rename_calendar()
  11855. mcal_reopen()
  11856. mcal_snooze()
  11857. mcal_store_event()
  11858. mcal_time_valid()
  11859. mcal_week_of_year()
  11860. mcrypt_cbc()
  11861. mcrypt_cfb()
  11862. mcrypt_create_iv()
  11863. mcrypt_decrypt()
  11864. mcrypt_ecb()
  11865. mcrypt_enc_get_algorithms_name()
  11866. mcrypt_enc_get_block_size()
  11867. mcrypt_enc_get_iv_size()
  11868. mcrypt_enc_get_key_size()
  11869. mcrypt_enc_get_modes_name()
  11870. mcrypt_enc_get_supported_key_sizes()
  11871. mcrypt_enc_is_block_algorithm_mode()
  11872. mcrypt_enc_is_block_algorithm()
  11873. mcrypt_enc_is_block_mode()
  11874. mcrypt_enc_self_test()
  11875. mcrypt_encrypt()
  11876. mcrypt_generic_deinit()
  11877. mcrypt_generic_end()
  11878. mcrypt_generic_init()
  11879. mcrypt_generic()
  11880. mcrypt_get_block_size()
  11881. mcrypt_get_cipher_name()
  11882. mcrypt_get_iv_size()
  11883. mcrypt_get_key_size()
  11884. mcrypt_list_algorithms()
  11885. mcrypt_list_modes()
  11886. mcrypt_module_close()
  11887. mcrypt_module_get_algo_block_size()
  11888. mcrypt_module_get_algo_key_size()
  11889. mcrypt_module_get_supported_key_sizes()
  11890. mcrypt_module_is_block_algorithm_mode()
  11891. mcrypt_module_is_block_algorithm()
  11892. mcrypt_module_is_block_mode()
  11893. mcrypt_module_open()
  11894. mcrypt_module_self_test()
  11895. mcrypt_ofb()
  11896. mdecrypt_generic()
  11897. mcve_adduser()
  11898. mcve_adduserarg()
  11899. mcve_bt()
  11900. mcve_checkstatus()
  11901. mcve_chkpwd()
  11902. mcve_chngpwd()
  11903. mcve_completeauthorizations()
  11904. mcve_connect()
  11905. mcve_connectionerror()
  11906. mcve_deleteresponse()
  11907. mcve_deletetrans()
  11908. mcve_deleteusersetup()
  11909. mcve_deluser()
  11910. mcve_destroyconn()
  11911. mcve_destroyengine()
  11912. mcve_disableuser()
  11913. mcve_edituser()
  11914. mcve_enableuser()
  11915. mcve_force()
  11916. mcve_getcell()
  11917. mcve_getcellbynum()
  11918. mcve_getcommadelimited()
  11919. mcve_getheader()
  11920. mcve_getuserarg()
  11921. mcve_getuserparam()
  11922. mcve_gft()
  11923. mcve_gl()
  11924. mcve_gut()
  11925. mcve_initconn()
  11926. mcve_initengine()
  11927. mcve_initusersetup()
  11928. mcve_iscommadelimited()
  11929. mcve_liststats()
  11930. mcve_listusers()
  11931. mcve_maxconntimeout()
  11932. mcve_monitor()
  11933. mcve_numcolumns()
  11934. mcve_numrows()
  11935. mcve_override()
  11936. mcve_parsecommadelimited()
  11937. mcve_ping()
  11938. mcve_preauth()
  11939. mcve_preauthcompletion()
  11940. mcve_qc()
  11941. mcve_responseparam()
  11942. mcve_return()
  11943. mcve_returncode()
  11944. mcve_returnstatus()
  11945. mcve_sale()
  11946. mcve_setblocking()
  11947. mcve_setdropfile()
  11948. mcve_setip()
  11949. mcve_setssl_files()
  11950. mcve_setssl()
  11951. mcve_settimeout()
  11952. mcve_settle()
  11953. mcve_text_avs()
  11954. mcve_text_code()
  11955. mcve_text_cv()
  11956. mcve_transactionauth()
  11957. mcve_transactionavs()
  11958. mcve_transactionbatch()
  11959. mcve_transactioncv()
  11960. mcve_transactionid()
  11961. mcve_transactionitem()
  11962. mcve_transactionssent()
  11963. mcve_transactiontext()
  11964. mcve_transinqueue()
  11965. mcve_transnew()
  11966. mcve_transparam()
  11967. mcve_transsend()
  11968. mcve_ub()
  11969. mcve_uwait()
  11970. mcve_verifyconnection()
  11971. mcve_verifysslcert()
  11972. mcve_void()
  11973. mhash_count()
  11974. mhash_get_block_size()
  11975. mhash_get_hash_name()
  11976. mhash_keygen_s2k()
  11977. mhash()
  11978. mime_content_type()
  11979. mssql_bind()
  11980. mssql_close()
  11981. mssql_connect()
  11982. mssql_data_seek()
  11983. mssql_execute()
  11984. mssql_fetch_array()
  11985. mssql_fetch_assoc()
  11986. mssql_fetch_batch()
  11987. mssql_fetch_field()
  11988. mssql_fetch_object()
  11989. mssql_fetch_row()
  11990. mssql_field_length()
  11991. mssql_field_name()
  11992. mssql_field_seek()
  11993. mssql_field_type()
  11994. mssql_free_result()
  11995. mssql_free_statement()
  11996. mssql_get_last_message()
  11997. mssql_guid_string()
  11998. mssql_init()
  11999. mssql_min_error_severity()
  12000. mssql_min_message_severity()
  12001. mssql_next_result()
  12002. mssql_num_fields()
  12003. mssql_num_rows()
  12004. mssql_pconnect()
  12005. mssql_query()
  12006. mssql_result()
  12007. mssql_rows_affected()
  12008. mssql_select_db()
  12009. ming_setcubicthreshold()
  12010. ming_setscale()
  12011. ming_useswfversion()
  12012. SWFAction()
  12013. SWFBitmap->getHeight()
  12014. SWFBitmap->getWidth()
  12015. SWFBitmap()
  12016. swfbutton_keypress()
  12017. SWFbutton->addAction()
  12018. SWFbutton->addShape()
  12019. SWFbutton->setAction()
  12020. SWFbutton->setdown()
  12021. SWFbutton->setHit()
  12022. SWFbutton->setOver()
  12023. SWFbutton->setUp()
  12024. SWFbutton()
  12025. SWFDisplayItem->addColor()
  12026. SWFDisplayItem->move()
  12027. SWFDisplayItem->moveTo()
  12028. SWFDisplayItem->multColor()
  12029. SWFDisplayItem->remove()
  12030. SWFDisplayItem->Rotate()
  12031. SWFDisplayItem->rotateTo()
  12032. SWFDisplayItem->scale()
  12033. SWFDisplayItem->scaleTo()
  12034. SWFDisplayItem->setDepth()
  12035. SWFDisplayItem->setName()
  12036. SWFDisplayItem->setRatio()
  12037. SWFDisplayItem->skewX()
  12038. SWFDisplayItem->skewXTo()
  12039. SWFDisplayItem->skewY()
  12040. SWFDisplayItem->skewYTo()
  12041. SWFDisplayItem()
  12042. SWFFill->moveTo()
  12043. SWFFill->rotateTo()
  12044. SWFFill->scaleTo()
  12045. SWFFill->skewXTo()
  12046. SWFFill->skewYTo()
  12047. SWFFill()
  12048. swffont->getwidth()
  12049. SWFFont()
  12050. SWFGradient->addEntry()
  12051. SWFGradient()
  12052. SWFMorph->getshape1()
  12053. SWFMorph->getshape2()
  12054. SWFMorph()
  12055. SWFMovie->add()
  12056. SWFMovie->nextframe()
  12057. SWFMovie->output()
  12058. swfmovie->remove()
  12059. SWFMovie->save()
  12060. SWFMovie->setbackground()
  12061. SWFMovie->setdimension()
  12062. SWFMovie->setframes()
  12063. SWFMovie->setrate()
  12064. SWFMovie->streammp3()
  12065. SWFMovie()
  12066. SWFShape->addFill()
  12067. SWFShape->drawCurve()
  12068. SWFShape->drawCurveTo()
  12069. SWFShape->drawLine()
  12070. SWFShape->drawLineTo()
  12071. SWFShape->movePen()
  12072. SWFShape->movePenTo()
  12073. SWFShape->setLeftFill()
  12074. SWFShape->setLine()
  12075. SWFShape->setRightFill()
  12076. SWFShape()
  12077. swfsprite->add()
  12078. SWFSprite->nextframe()
  12079. SWFSprite->remove()
  12080. SWFSprite->setframes()
  12081. SWFSprite()
  12082. SWFText->addString()
  12083. SWFText->getWidth()
  12084. SWFText->moveTo()
  12085. SWFText->setColor()
  12086. SWFText->setFont()
  12087. SWFText->setHeight()
  12088. SWFText->setSpacing()
  12089. SWFText()
  12090. SWFTextField->addstring()
  12091. SWFTextField->align()
  12092. SWFTextField->setbounds()
  12093. SWFTextField->setcolor()
  12094. SWFTextField->setFont()
  12095. SWFTextField->setHeight()
  12096. SWFTextField->setindentation()
  12097. SWFTextField->setLeftMargin()
  12098. SWFTextField->setLineSpacing()
  12099. SWFTextField->setMargins()
  12100. SWFTextField->setname()
  12101. SWFTextField->setrightMargin()
  12102. SWFTextField()
  12103. connection_aborted()
  12104. connection_status()
  12105. connection_timeout()
  12106. constant()
  12107. define()
  12108. defined()
  12109. die()
  12110. eval()
  12111. exit()
  12112. get_browser()
  12113. highlight_file()
  12114. highlight_string()
  12115. ignore_user_abort()
  12116. pack()
  12117. show_source()
  12118. sleep()
  12119. uniqid()
  12120. unpack()
  12121. usleep()
  12122. udm_add_search_limit()
  12123. udm_alloc_agent()
  12124. udm_api_version()
  12125. udm_cat_list()
  12126. udm_cat_path()
  12127. udm_check_charset()
  12128. udm_check_stored()
  12129. udm_clear_search_limits()
  12130. udm_close_stored()
  12131. udm_crc32()
  12132. udm_errno()
  12133. udm_error()
  12134. udm_find()
  12135. udm_free_agent()
  12136. udm_free_ispell_data()
  12137. udm_free_res()
  12138. udm_get_doc_count()
  12139. udm_get_res_field()
  12140. udm_get_res_param()
  12141. udm_load_ispell_data()
  12142. udm_open_stored()
  12143. udm_set_agent_param()
  12144. msql_affected_rows()
  12145. msql_close()
  12146. msql_connect()
  12147. msql_create_db()
  12148. msql_createdb()
  12149. msql_data_seek()
  12150. msql_dbname()
  12151. msql_drop_db()
  12152. msql_dropdb()
  12153. msql_error()
  12154. msql_fetch_array()
  12155. msql_fetch_field()
  12156. msql_fetch_object()
  12157. msql_fetch_row()
  12158. msql_field_seek()
  12159. msql_fieldflags()
  12160. msql_fieldlen()
  12161. msql_fieldname()
  12162. msql_fieldtable()
  12163. msql_fieldtype()
  12164. msql_free_result()
  12165. msql_freeresult()
  12166. msql_list_dbs()
  12167. msql_list_fields()
  12168. msql_list_tables()
  12169. msql_listdbs()
  12170. msql_listfields()
  12171. msql_listtables()
  12172. msql_num_fields()
  12173. msql_num_rows()
  12174. msql_numfields()
  12175. msql_numrows()
  12176. msql_pconnect()
  12177. msql_query()
  12178. msql_regcase()
  12179. msql_result()
  12180. msql_select_db()
  12181. msql_selectdb()
  12182. msql_tablename()
  12183. msql()
  12184. mysql_affected_rows()
  12185. mysql_change_user()
  12186. mysql_client_encoding()
  12187. mysql_close()
  12188. mysql_connect()
  12189. mysql_create_db()
  12190. mysql_data_seek()
  12191. mysql_db_name()
  12192. mysql_db_query()
  12193. mysql_drop_db()
  12194. mysql_errno()
  12195. mysql_error()
  12196. mysql_escape_string()
  12197. mysql_fetch_array()
  12198. mysql_fetch_assoc()
  12199. mysql_fetch_field()
  12200. mysql_fetch_lengths()
  12201. mysql_fetch_object()
  12202. mysql_fetch_row()
  12203. mysql_field_flags()
  12204. mysql_field_len()
  12205. mysql_field_name()
  12206. mysql_field_seek()
  12207. mysql_field_table()
  12208. mysql_field_type()
  12209. mysql_free_result()
  12210. mysql_get_client_info()
  12211. mysql_get_host_info()
  12212. mysql_get_proto_info()
  12213. mysql_get_server_info()
  12214. mysql_info()
  12215. mysql_insert_id()
  12216. mysql_list_dbs()
  12217. mysql_list_fields()
  12218. mysql_list_processes()
  12219. mysql_list_tables()
  12220. mysql_num_fields()
  12221. mysql_num_rows()
  12222. mysql_pconnect()
  12223. mysql_ping()
  12224. mysql_query()
  12225. mysql_real_escape_string()
  12226. mysql_result()
  12227. mysql_select_db()
  12228. mysql_stat()
  12229. mysql_tablename()
  12230. mysql_thread_id()
  12231. mysql_unbuffered_query()
  12232. mysqli_affected_rows()
  12233. mysqli_autocommit()
  12234. mysqli_bind_param()
  12235. mysqli_bind_result()
  12236. mysqli_change_user()
  12237. mysqli_character_set_name()
  12238. mysqli_close()
  12239. mysqli_commit()
  12240. mysqli_connect()
  12241. mysqli_data_seek()
  12242. mysqli_debug()
  12243. mysqli_disable_reads_from_master()
  12244. mysqli_disable_rpl_parse()
  12245. mysqli_dump_debug_info()
  12246. mysqli_enable_reads_from_master()
  12247. mysqli_enable_rpl_parse()
  12248. mysqli_errno()
  12249. mysqli_error()
  12250. mysqli_execute()
  12251. mysqli_fetch_array()
  12252. mysqli_fetch_assoc()
  12253. mysqli_fetch_field_direct()
  12254. mysqli_fetch_field()
  12255. mysqli_fetch_fields()
  12256. mysqli_fetch_lengths()
  12257. mysqli_fetch_object()
  12258. mysqli_fetch_row()
  12259. mysqli_fetch()
  12260. mysqli_field_count()
  12261. mysqli_field_seek()
  12262. mysqli_field_tell()
  12263. mysqli_free_result()
  12264. mysqli_get_client_info()
  12265. mysqli_get_host_info()
  12266. mysqli_get_proto_info()
  12267. mysqli_get_server_info()
  12268. mysqli_get_server_version()
  12269. mysqli_info()
  12270. mysqli_init()
  12271. mysqli_insert_id()
  12272. mysqli_kill()
  12273. mysqli_master_query()
  12274. mysqli_num_fields()
  12275. mysqli_num_rows()
  12276. mysqli_options()
  12277. mysqli_param_count()
  12278. mysqli_ping()
  12279. mysqli_prepare_result()
  12280. mysqli_prepare()
  12281. mysqli_profiler()
  12282. mysqli_query()
  12283. mysqli_read_query_result()
  12284. mysqli_real_connect()
  12285. mysqli_real_escape_string()
  12286. mysqli_real_query()
  12287. mysqli_reload()
  12288. mysqli_rollback()
  12289. mysqli_rpl_parse_enabled()
  12290. mysqli_rpl_probe()
  12291. mysqli_rpl_query_type()
  12292. mysqli_select_db()
  12293. mysqli_send_long_data()
  12294. mysqli_send_query()
  12295. mysqli_slave_query()
  12296. mysqli_ssl_set()
  12297. mysqli_stat()
  12298. mysqli_stmt_affected_rows()
  12299. mysqli_stmt_close()
  12300. mysqli_stmt_errno()
  12301. mysqli_stmt_error()
  12302. mysqli_stmt_store_result()
  12303. mysqli_store_result()
  12304. mysqli_thread_id()
  12305. mysqli_thread_safe()
  12306. mysqli_use_result()
  12307. mysqli_warning_count()
  12308. msession_connect()
  12309. msession_count()
  12310. msession_create()
  12311. msession_destroy()
  12312. msession_disconnect()
  12313. msession_find()
  12314. msession_get_array()
  12315. msession_get()
  12316. msession_getdata()
  12317. msession_inc()
  12318. msession_list()
  12319. msession_listvar()
  12320. msession_lock()
  12321. msession_plugin()
  12322. msession_randstr()
  12323. msession_set_array()
  12324. msession_set()
  12325. msession_setdata()
  12326. msession_timeout()
  12327. msession_uniq()
  12328. msession_unlock()
  12329. muscat_close()
  12330. muscat_get()
  12331. muscat_give()
  12332. muscat_setup_net()
  12333. muscat_setup()
  12334. checkdnsrr()
  12335. closelog()
  12336. debugger_off()
  12337. debugger_on()
  12338. define_syslog_variables()
  12339. dns_check_record()
  12340. dns_get_mx()
  12341. dns_get_record()
  12342. fsockopen()
  12343. gethostbyaddr()
  12344. gethostbyname()
  12345. gethostbynamel()
  12346. getmxrr()
  12347. getprotobyname()
  12348. getprotobynumber()
  12349. getservbyname()
  12350. getservbyport()
  12351. ip2long()
  12352. long2ip()
  12353. openlog()
  12354. pfsockopen()
  12355. socket_get_status()
  12356. socket_set_blocking()
  12357. socket_set_timeout()
  12358. syslog()
  12359. ncurses_addch()
  12360. ncurses_addchnstr()
  12361. ncurses_addchstr()
  12362. ncurses_addnstr()
  12363. ncurses_addstr()
  12364. ncurses_assume_default_colors()
  12365. ncurses_attroff()
  12366. ncurses_attron()
  12367. ncurses_attrset()
  12368. ncurses_baudrate()
  12369. ncurses_beep()
  12370. ncurses_bkgd()
  12371. ncurses_bkgdset()
  12372. ncurses_border()
  12373. ncurses_bottom_panel()
  12374. ncurses_can_change_color()
  12375. ncurses_cbreak()
  12376. ncurses_clear()
  12377. ncurses_clrtobot()
  12378. ncurses_clrtoeol()
  12379. ncurses_color_content()
  12380. ncurses_color_set()
  12381. ncurses_curs_set()
  12382. ncurses_def_prog_mode()
  12383. ncurses_def_shell_mode()
  12384. ncurses_define_key()
  12385. ncurses_del_panel()
  12386. ncurses_delay_output()
  12387. ncurses_delch()
  12388. ncurses_deleteln()
  12389. ncurses_delwin()
  12390. ncurses_doupdate()
  12391. ncurses_echo()
  12392. ncurses_echochar()
  12393. ncurses_end()
  12394. ncurses_erase()
  12395. ncurses_erasechar()
  12396. ncurses_filter()
  12397. ncurses_flash()
  12398. ncurses_flushinp()
  12399. ncurses_getch()
  12400. ncurses_getmaxyx()
  12401. ncurses_getmouse()
  12402. ncurses_getyx()
  12403. ncurses_halfdelay()
  12404. ncurses_has_colors()
  12405. ncurses_has_ic()
  12406. ncurses_has_il()
  12407. ncurses_has_key()
  12408. ncurses_hide_panel()
  12409. ncurses_hline()
  12410. ncurses_inch()
  12411. ncurses_init_color()
  12412. ncurses_init_pair()
  12413. ncurses_init()
  12414. ncurses_insch()
  12415. ncurses_insdelln()
  12416. ncurses_insertln()
  12417. ncurses_insstr()
  12418. ncurses_instr()
  12419. ncurses_isendwin()
  12420. ncurses_keyok()
  12421. ncurses_keypad()
  12422. ncurses_killchar()
  12423. ncurses_longname()
  12424. ncurses_meta()
  12425. ncurses_mouse_trafo()
  12426. ncurses_mouseinterval()
  12427. ncurses_mousemask()
  12428. ncurses_move_panel()
  12429. ncurses_move()
  12430. ncurses_mvaddch()
  12431. ncurses_mvaddchnstr()
  12432. ncurses_mvaddchstr()
  12433. ncurses_mvaddnstr()
  12434. ncurses_mvaddstr()
  12435. ncurses_mvcur()
  12436. ncurses_mvdelch()
  12437. ncurses_mvgetch()
  12438. ncurses_mvhline()
  12439. ncurses_mvinch()
  12440. ncurses_mvvline()
  12441. ncurses_mvwaddstr()
  12442. ncurses_napms()
  12443. ncurses_new_panel()
  12444. ncurses_newpad()
  12445. ncurses_newwin()
  12446. ncurses_nl()
  12447. ncurses_nocbreak()
  12448. ncurses_noecho()
  12449. ncurses_nonl()
  12450. ncurses_noqiflush()
  12451. ncurses_noraw()
  12452. ncurses_pair_content()
  12453. ncurses_panel_above()
  12454. ncurses_panel_below()
  12455. ncurses_panel_window()
  12456. ncurses_pnoutrefresh()
  12457. ncurses_prefresh()
  12458. ncurses_putp()
  12459. ncurses_qiflush()
  12460. ncurses_raw()
  12461. ncurses_refresh()
  12462. ncurses_replace_panel()
  12463. ncurses_reset_prog_mode()
  12464. ncurses_reset_shell_mode()
  12465. ncurses_resetty()
  12466. ncurses_savetty()
  12467. ncurses_scr_dump()
  12468. ncurses_scr_init()
  12469. ncurses_scr_restore()
  12470. ncurses_scr_set()
  12471. ncurses_scrl()
  12472. ncurses_show_panel()
  12473. ncurses_slk_attr()
  12474. ncurses_slk_attroff()
  12475. ncurses_slk_attron()
  12476. ncurses_slk_attrset()
  12477. ncurses_slk_clear()
  12478. ncurses_slk_color()
  12479. ncurses_slk_init()
  12480. ncurses_slk_noutrefresh()
  12481. ncurses_slk_refresh()
  12482. ncurses_slk_restore()
  12483. ncurses_slk_set()
  12484. ncurses_slk_touch()
  12485. ncurses_standend()
  12486. ncurses_standout()
  12487. ncurses_start_color()
  12488. ncurses_termattrs()
  12489. ncurses_termname()
  12490. ncurses_timeout()
  12491. ncurses_top_panel()
  12492. ncurses_typeahead()
  12493. ncurses_ungetch()
  12494. ncurses_ungetmouse()
  12495. ncurses_update_panels()
  12496. ncurses_use_default_colors()
  12497. ncurses_use_env()
  12498. ncurses_use_extended_names()
  12499. ncurses_vidattr()
  12500. ncurses_vline()
  12501. ncurses_waddch()
  12502. ncurses_waddstr()
  12503. ncurses_wattroff()
  12504. ncurses_wattron()
  12505. ncurses_wattrset()
  12506. ncurses_wborder()
  12507. ncurses_wclear()
  12508. ncurses_wcolor_set()
  12509. ncurses_werase()
  12510. ncurses_wgetch()
  12511. ncurses_whline()
  12512. ncurses_wmouse_trafo()
  12513. ncurses_wmove()
  12514. ncurses_wnoutrefresh()
  12515. ncurses_wrefresh()
  12516. ncurses_wstandend()
  12517. ncurses_wstandout()
  12518. ncurses_wvline()
  12519. notes_body()
  12520. notes_copy_db()
  12521. notes_create_db()
  12522. notes_create_note()
  12523. notes_drop_db()
  12524. notes_find_note()
  12525. notes_header_info()
  12526. notes_list_msgs()
  12527. notes_mark_read()
  12528. notes_mark_unread()
  12529. notes_nav_create()
  12530. notes_search()
  12531. notes_unread()
  12532. notes_version()
  12533. nsapi_request_headers()
  12534. nsapi_response_headers()
  12535. nsapi_virtual()
  12536. odbc_autocommit()
  12537. odbc_binmode()
  12538. odbc_close_all()
  12539. odbc_close()
  12540. odbc_columnprivileges()
  12541. odbc_columns()
  12542. odbc_commit()
  12543. odbc_connect()
  12544. odbc_cursor()
  12545. odbc_data_source()
  12546. odbc_do()
  12547. odbc_error()
  12548. odbc_errormsg()
  12549. odbc_exec()
  12550. odbc_execute()
  12551. odbc_fetch_array()
  12552. odbc_fetch_into()
  12553. odbc_fetch_object()
  12554. odbc_fetch_row()
  12555. odbc_field_len()
  12556. odbc_field_name()
  12557. odbc_field_num()
  12558. odbc_field_precision()
  12559. odbc_field_scale()
  12560. odbc_field_type()
  12561. odbc_foreignkeys()
  12562. odbc_free_result()
  12563. odbc_gettypeinfo()
  12564. odbc_longreadlen()
  12565. odbc_next_result()
  12566. odbc_num_fields()
  12567. odbc_num_rows()
  12568. odbc_pconnect()
  12569. odbc_prepare()
  12570. odbc_primarykeys()
  12571. odbc_procedurecolumns()
  12572. odbc_procedures()
  12573. odbc_result_all()
  12574. odbc_result()
  12575. odbc_rollback()
  12576. odbc_setoption()
  12577. odbc_specialcolumns()
  12578. odbc_statistics()
  12579. odbc_tableprivileges()
  12580. odbc_tables()
  12581. aggregate_info()
  12582. aggregate_methods_by_list()
  12583. aggregate_methods_by_regexp()
  12584. aggregate_methods()
  12585. aggregate_properties_by_list()
  12586. aggregate_properties_by_regexp()
  12587. aggregate_properties()
  12588. aggregate()
  12589. aggregation_info()
  12590. deaggregate()
  12591. ocibindbyname()
  12592. ocicancel()
  12593. ocicloselob()
  12594. ocicollappend()
  12595. ocicollassign()
  12596. ocicollassignelem()
  12597. ocicollgetelem()
  12598. ocicollmax()
  12599. ocicollsize()
  12600. ocicolltrim()
  12601. ocicolumnisnull()
  12602. ocicolumnname()
  12603. ocicolumnprecision()
  12604. ocicolumnscale()
  12605. ocicolumnsize()
  12606. ocicolumntype()
  12607. ocicolumntyperaw()
  12608. ocicommit()
  12609. ocidefinebyname()
  12610. ocierror()
  12611. ociexecute()
  12612. ocifetch()
  12613. ocifetchinto()
  12614. ocifetchstatement()
  12615. ocifreecollection()
  12616. ocifreecursor()
  12617. ocifreedesc()
  12618. ocifreestatement()
  12619. ociinternaldebug()
  12620. ociloadlob()
  12621. ocilogoff()
  12622. ocilogon()
  12623. ocinewcollection()
  12624. ocinewcursor()
  12625. ocinewdescriptor()
  12626. ocinlogon()
  12627. ocinumcols()
  12628. ociparse()
  12629. ociplogon()
  12630. ociresult()
  12631. ocirollback()
  12632. ocirowcount()
  12633. ocisavelob()
  12634. ocisavelobfile()
  12635. ociserverversion()
  12636. ocisetprefetch()
  12637. ocistatementtype()
  12638. ociwritelobtofile()
  12639. ociwritetemporarylob()
  12640. openssl_csr_export_to_file()
  12641. openssl_csr_export()
  12642. openssl_csr_new()
  12643. openssl_csr_sign()
  12644. openssl_error_string()
  12645. openssl_free_key()
  12646. openssl_get_privatekey()
  12647. openssl_get_publickey()
  12648. openssl_open()
  12649. openssl_pkcs7_decrypt()
  12650. openssl_pkcs7_encrypt()
  12651. openssl_pkcs7_sign()
  12652. openssl_pkcs7_verify()
  12653. openssl_pkey_export_to_file()
  12654. openssl_pkey_export()
  12655. openssl_pkey_get_private()
  12656. openssl_pkey_get_public()
  12657. openssl_pkey_new()
  12658. openssl_private_decrypt()
  12659. openssl_private_encrypt()
  12660. openssl_public_decrypt()
  12661. openssl_public_encrypt()
  12662. openssl_seal()
  12663. openssl_sign()
  12664. openssl_verify()
  12665. openssl_x509_check_private_key()
  12666. openssl_x509_checkpurpose()
  12667. openssl_x509_export_to_file()
  12668. openssl_x509_export()
  12669. openssl_x509_free()
  12670. openssl_x509_parse()
  12671. openssl_x509_read()
  12672. ora_bind()
  12673. ora_close()
  12674. ora_columnname()
  12675. ora_columnsize()
  12676. ora_columntype()
  12677. ora_commit()
  12678. ora_commitoff()
  12679. ora_commiton()
  12680. ora_do()
  12681. ora_error()
  12682. ora_errorcode()
  12683. ora_exec()
  12684. ora_fetch_into()
  12685. ora_fetch()
  12686. ora_getcolumn()
  12687. ora_logoff()
  12688. ora_logon()
  12689. ora_numcols()
  12690. ora_numrows()
  12691. ora_open()
  12692. ora_parse()
  12693. ora_plogon()
  12694. ora_rollback()
  12695. ovrimos_close()
  12696. ovrimos_commit()
  12697. ovrimos_connect()
  12698. ovrimos_cursor()
  12699. ovrimos_exec()
  12700. ovrimos_execute()
  12701. ovrimos_fetch_into()
  12702. ovrimos_fetch_row()
  12703. ovrimos_field_len()
  12704. ovrimos_field_name()
  12705. ovrimos_field_num()
  12706. ovrimos_field_type()
  12707. ovrimos_free_result()
  12708. ovrimos_longreadlen()
  12709. ovrimos_num_fields()
  12710. ovrimos_num_rows()
  12711. ovrimos_prepare()
  12712. ovrimos_result_all()
  12713. ovrimos_result()
  12714. ovrimos_rollback()
  12715. flush()
  12716. ob_clean()
  12717. ob_end_clean()
  12718. ob_end_flush()
  12719. ob_flush()
  12720. ob_get_clean()
  12721. ob_get_contents()
  12722. ob_get_length()
  12723. ob_get_level()
  12724. ob_get_status()
  12725. ob_gzhandler()
  12726. ob_implicit_flush()
  12727. ob_start()
  12728. overload()
  12729. pdf_add_annotation()
  12730. pdf_add_bookmark()
  12731. pdf_add_launchlink()
  12732. pdf_add_locallink()
  12733. pdf_add_note()
  12734. pdf_add_outline()
  12735. pdf_add_pdflink()
  12736. pdf_add_thumbnail()
  12737. pdf_add_weblink()
  12738. pdf_arc()
  12739. pdf_arcn()
  12740. pdf_attach_file()
  12741. pdf_begin_page()
  12742. pdf_begin_pattern()
  12743. pdf_begin_template()
  12744. pdf_circle()
  12745. pdf_clip()
  12746. pdf_close_image()
  12747. pdf_close_pdi_page()
  12748. pdf_close_pdi()
  12749. pdf_close()
  12750. pdf_closepath_fill_stroke()
  12751. pdf_closepath_stroke()
  12752. pdf_closepath()
  12753. pdf_concat()
  12754. pdf_continue_text()
  12755. pdf_curveto()
  12756. pdf_delete()
  12757. pdf_end_page()
  12758. pdf_end_pattern()
  12759. pdf_end_template()
  12760. pdf_endpath()
  12761. pdf_fill_stroke()
  12762. pdf_fill()
  12763. pdf_findfont()
  12764. pdf_get_buffer()
  12765. pdf_get_font()
  12766. pdf_get_fontname()
  12767. pdf_get_fontsize()
  12768. pdf_get_image_height()
  12769. pdf_get_image_width()
  12770. pdf_get_majorversion()
  12771. pdf_get_minorversion()
  12772. pdf_get_parameter()
  12773. pdf_get_pdi_parameter()
  12774. pdf_get_pdi_value()
  12775. pdf_get_value()
  12776. pdf_initgraphics()
  12777. pdf_lineto()
  12778. pdf_makespotcolor()
  12779. pdf_moveto()
  12780. pdf_new()
  12781. pdf_open_CCITT()
  12782. pdf_open_file()
  12783. pdf_open_gif()
  12784. pdf_open_image_file()
  12785. pdf_open_image()
  12786. pdf_open_jpeg()
  12787. pdf_open_memory_image()
  12788. pdf_open_pdi_page()
  12789. pdf_open_pdi()
  12790. pdf_open_png()
  12791. pdf_open_tiff()
  12792. pdf_open()
  12793. pdf_place_image()
  12794. pdf_place_pdi_page()
  12795. pdf_rect()
  12796. pdf_restore()
  12797. pdf_rotate()
  12798. pdf_save()
  12799. pdf_scale()
  12800. pdf_set_border_color()
  12801. pdf_set_border_dash()
  12802. pdf_set_border_style()
  12803. pdf_set_char_spacing()
  12804. pdf_set_duration()
  12805. pdf_set_font()
  12806. pdf_set_horiz_scaling()
  12807. pdf_set_info_author()
  12808. pdf_set_info_creator()
  12809. pdf_set_info_keywords()
  12810. pdf_set_info_subject()
  12811. pdf_set_info_title()
  12812. pdf_set_info()
  12813. pdf_set_leading()
  12814. pdf_set_parameter()
  12815. pdf_set_text_matrix()
  12816. pdf_set_text_pos()
  12817. pdf_set_text_rendering()
  12818. pdf_set_text_rise()
  12819. pdf_set_value()
  12820. pdf_set_word_spacing()
  12821. pdf_setcolor()
  12822. pdf_setdash()
  12823. pdf_setflat()
  12824. pdf_setfont()
  12825. pdf_setgray_fill()
  12826. pdf_setgray_stroke()
  12827. pdf_setgray()
  12828. pdf_setlinecap()
  12829. pdf_setlinejoin()
  12830. pdf_setlinewidth()
  12831. pdf_setmatrix()
  12832. pdf_setmiterlimit()
  12833. pdf_setpolydash()
  12834. pdf_setrgbcolor_fill()
  12835. pdf_setrgbcolor_stroke()
  12836. pdf_setrgbcolor()
  12837. pdf_show_boxed()
  12838. pdf_show_xy()
  12839. pdf_show()
  12840. pdf_skew()
  12841. pdf_stringwidth()
  12842. pdf_stroke()
  12843. pdf_translate()
  12844. pfpro_cleanup()
  12845. pfpro_init()
  12846. pfpro_process_raw()
  12847. pfpro_process()
  12848. pfpro_version()
  12849. assert_options()
  12850. assert()
  12851. dl()
  12852. extension_loaded()
  12853. get_cfg_var()
  12854. get_current_user()
  12855. get_defined_constants()
  12856. get_extension_funcs()
  12857. get_include_path()
  12858. get_included_files()
  12859. get_loaded_extensions()
  12860. get_magic_quotes_gpc()
  12861. get_magic_quotes_runtime()
  12862. get_required_files()
  12863. getenv()
  12864. getlastmod()
  12865. getmygid()
  12866. getmyinode()
  12867. getmypid()
  12868. getmyuid()
  12869. getopt()
  12870. getrusage()
  12871. ini_alter()
  12872. ini_get_all()
  12873. ini_get()
  12874. ini_restore()
  12875. ini_set()
  12876. main()
  12877. memory_get_usage()
  12878. php_ini_scanned_files()
  12879. php_logo_guid()
  12880. php_sapi_name()
  12881. php_uname()
  12882. phpcredits()
  12883. phpinfo()
  12884. phpversion()
  12885. putenv()
  12886. restore_include_path()
  12887. set_include_path()
  12888. set_magic_quotes_runtime()
  12889. set_time_limit()
  12890. version_compare()
  12891. zend_logo_guid()
  12892. zend_version()
  12893. posix_ctermid()
  12894. posix_get_last_error()
  12895. posix_getcwd()
  12896. posix_getegid()
  12897. posix_geteuid()
  12898. posix_getgid()
  12899. posix_getgrgid()
  12900. posix_getgrnam()
  12901. posix_getgroups()
  12902. posix_getlogin()
  12903. posix_getpgid()
  12904. posix_getpgrp()
  12905. posix_getpid()
  12906. posix_getppid()
  12907. posix_getpwnam()
  12908. posix_getpwuid()
  12909. posix_getrlimit()
  12910. posix_getsid()
  12911. posix_getuid()
  12912. posix_isatty()
  12913. posix_kill()
  12914. posix_mkfifo()
  12915. posix_setegid()
  12916. posix_seteuid()
  12917. posix_setgid()
  12918. posix_setpgid()
  12919. posix_setsid()
  12920. posix_setuid()
  12921. posix_strerror()
  12922. posix_times()
  12923. posix_ttyname()
  12924. posix_uname()
  12925. pg_affected_rows()
  12926. pg_cancel_query()
  12927. pg_client_encoding()
  12928. pg_close()
  12929. pg_connect()
  12930. pg_connection_busy()
  12931. pg_connection_reset()
  12932. pg_connection_status()
  12933. pg_convert()
  12934. pg_copy_from()
  12935. pg_copy_to()
  12936. pg_dbname()
  12937. pg_delete()
  12938. pg_end_copy()
  12939. pg_escape_bytea()
  12940. pg_escape_string()
  12941. pg_fetch_all()
  12942. pg_fetch_array()
  12943. pg_fetch_assoc()
  12944. pg_fetch_object()
  12945. pg_fetch_result()
  12946. pg_fetch_row()
  12947. pg_field_is_null()
  12948. pg_field_name()
  12949. pg_field_num()
  12950. pg_field_prtlen()
  12951. pg_field_size()
  12952. pg_field_type()
  12953. pg_free_result()
  12954. pg_get_notify()
  12955. pg_get_pid()
  12956. pg_get_result()
  12957. pg_host()
  12958. pg_insert()
  12959. pg_last_error()
  12960. pg_last_notice()
  12961. pg_last_oid()
  12962. pg_lo_close()
  12963. pg_lo_create()
  12964. pg_lo_export()
  12965. pg_lo_import()
  12966. pg_lo_open()
  12967. pg_lo_read_all()
  12968. pg_lo_read()
  12969. pg_lo_seek()
  12970. pg_lo_tell()
  12971. pg_lo_unlink()
  12972. pg_lo_write()
  12973. pg_meta_data()
  12974. pg_num_fields()
  12975. pg_num_rows()
  12976. pg_options()
  12977. pg_pconnect()
  12978. pg_ping()
  12979. pg_port()
  12980. pg_put_line()
  12981. pg_query()
  12982. pg_result_error()
  12983. pg_result_seek()
  12984. pg_result_status()
  12985. pg_select()
  12986. pg_send_query()
  12987. pg_set_client_encoding()
  12988. pg_trace()
  12989. pg_tty()
  12990. pg_unescape_bytea()
  12991. pg_untrace()
  12992. pg_update()
  12993. pcntl_exec()
  12994. pcntl_fork()
  12995. pcntl_signal()
  12996. pcntl_waitpid()
  12997. pcntl_wexitstatus()
  12998. pcntl_wifexited()
  12999. pcntl_wifsignaled()
  13000. pcntl_wifstopped()
  13001. pcntl_wstopsig()
  13002. pcntl_wtermsig()
  13003. escapeshellarg()
  13004. escapeshellcmd()
  13005. exec()
  13006. passthru()
  13007. proc_close()
  13008. proc_get_status()
  13009. proc_nice()
  13010. proc_open()
  13011. proc_terminate()
  13012. shell_exec()
  13013. system()
  13014. printer_abort()
  13015. printer_close()
  13016. printer_create_brush()
  13017. printer_create_dc()
  13018. printer_create_font()
  13019. printer_create_pen()
  13020. printer_delete_brush()
  13021. printer_delete_dc()
  13022. printer_delete_font()
  13023. printer_delete_pen()
  13024. printer_draw_bmp()
  13025. printer_draw_chord()
  13026. printer_draw_elipse()
  13027. printer_draw_line()
  13028. printer_draw_pie()
  13029. printer_draw_rectangle()
  13030. printer_draw_roundrect()
  13031. printer_draw_text()
  13032. printer_end_doc()
  13033. printer_end_page()
  13034. printer_get_option()
  13035. printer_list()
  13036. printer_logical_fontheight()
  13037. printer_open()
  13038. printer_select_brush()
  13039. printer_select_font()
  13040. printer_select_pen()
  13041. printer_set_option()
  13042. printer_start_doc()
  13043. printer_start_page()
  13044. printer_write()
  13045. pspell_add_to_personal()
  13046. pspell_add_to_session()
  13047. pspell_check()
  13048. pspell_clear_session()
  13049. pspell_config_create()
  13050. pspell_config_ignore()
  13051. pspell_config_mode()
  13052. pspell_config_personal()
  13053. pspell_config_repl()
  13054. pspell_config_runtogether()
  13055. pspell_config_save_repl()
  13056. pspell_new_config()
  13057. pspell_new_personal()
  13058. pspell_new()
  13059. pspell_save_wordlist()
  13060. pspell_store_replacement()
  13061. pspell_suggest()
  13062. readline_add_history()
  13063. readline_clear_history()
  13064. readline_completion_function()
  13065. readline_info()
  13066. readline_list_history()
  13067. readline_read_history()
  13068. readline_write_history()
  13069. readline()
  13070. recode_file()
  13071. recode_string()
  13072. recode()
  13073. Pattern Modifiers()
  13074. Pattern Syntax()
  13075. preg_grep()
  13076. preg_match_all()
  13077. preg_match()
  13078. preg_quote()
  13079. preg_replace_callback()
  13080. preg_replace()
  13081. preg_split()
  13082. qdom_error()
  13083. qdom_tree()
  13084. ereg_replace()
  13085. ereg()
  13086. eregi_replace()
  13087. eregi()
  13088. split()
  13089. spliti()
  13090. sql_regcase()
  13091. ftok()
  13092. msg_get_queue()
  13093. msg_receive()
  13094. msg_remove_queue()
  13095. msg_send()
  13096. msg_set_queue()
  13097. msg_stat_queue()
  13098. sem_acquire()
  13099. sem_get()
  13100. sem_release()
  13101. sem_remove()
  13102. shm_attach()
  13103. shm_detach()
  13104. shm_get_var()
  13105. shm_put_var()
  13106. shm_remove_var()
  13107. shm_remove()
  13108. sesam_affected_rows()
  13109. sesam_commit()
  13110. sesam_connect()
  13111. sesam_diagnostic()
  13112. sesam_disconnect()
  13113. sesam_errormsg()
  13114. sesam_execimm()
  13115. sesam_fetch_array()
  13116. sesam_fetch_result()
  13117. sesam_fetch_row()
  13118. sesam_field_array()
  13119. sesam_field_name()
  13120. sesam_free_result()
  13121. sesam_num_fields()
  13122. sesam_query()
  13123. sesam_rollback()
  13124. sesam_seek_row()
  13125. sesam_settransaction()
  13126. session_cache_expire()
  13127. session_cache_limiter()
  13128. session_decode()
  13129. session_destroy()
  13130. session_encode()
  13131. session_get_cookie_params()
  13132. session_id()
  13133. session_is_registered()
  13134. session_module_name()
  13135. session_name()
  13136. session_regenerate_id()
  13137. session_register()
  13138. session_save_path()
  13139. session_set_cookie_params()
  13140. session_set_save_handler()
  13141. session_start()
  13142. session_unregister()
  13143. session_unset()
  13144. session_write_close()
  13145. shmop_close()
  13146. shmop_delete()
  13147. shmop_open()
  13148. shmop_read()
  13149. shmop_size()
  13150. shmop_write()
  13151. sqlite_array_query()
  13152. sqlite_busy_timeout()
  13153. sqlite_changes()
  13154. sqlite_close()
  13155. sqlite_column()
  13156. sqlite_create_aggregate()
  13157. sqlite_create_function()
  13158. sqlite_current()
  13159. sqlite_error_string()
  13160. sqlite_escape_string()
  13161. sqlite_fetch_array()
  13162. sqlite_fetch_single()
  13163. sqlite_fetch_string()
  13164. sqlite_field_name()
  13165. sqlite_has_more()
  13166. sqlite_last_error()
  13167. sqlite_last_insert_rowid()
  13168. sqlite_libencoding()
  13169. sqlite_libversion()
  13170. sqlite_next()
  13171. sqlite_num_fields()
  13172. sqlite_num_rows()
  13173. sqlite_open()
  13174. sqlite_popen()
  13175. sqlite_query()
  13176. sqlite_rewind()
  13177. sqlite_seek()
  13178. sqlite_udf_decode_binary()
  13179. sqlite_udf_encode_binary()
  13180. sqlite_unbuffered_query()
  13181. swf_actiongeturl()
  13182. swf_actiongotoframe()
  13183. swf_actiongotolabel()
  13184. swf_actionnextframe()
  13185. swf_actionplay()
  13186. swf_actionprevframe()
  13187. swf_actionsettarget()
  13188. swf_actionstop()
  13189. swf_actiontogglequality()
  13190. swf_actionwaitforframe()
  13191. swf_addbuttonrecord()
  13192. swf_addcolor()
  13193. swf_closefile()
  13194. swf_definebitmap()
  13195. swf_definefont()
  13196. swf_defineline()
  13197. swf_definepoly()
  13198. swf_definerect()
  13199. swf_definetext()
  13200. swf_endbutton()
  13201. swf_enddoaction()
  13202. swf_endshape()
  13203. swf_endsymbol()
  13204. swf_fontsize()
  13205. swf_fontslant()
  13206. swf_fonttracking()
  13207. swf_getbitmapinfo()
  13208. swf_getfontinfo()
  13209. swf_getframe()
  13210. swf_labelframe()
  13211. swf_lookat()
  13212. swf_modifyobject()
  13213. swf_mulcolor()
  13214. swf_nextid()
  13215. swf_oncondition()
  13216. swf_openfile()
  13217. swf_ortho2()
  13218. swf_ortho()
  13219. swf_perspective()
  13220. swf_placeobject()
  13221. swf_polarview()
  13222. swf_popmatrix()
  13223. swf_posround()
  13224. swf_pushmatrix()
  13225. swf_removeobject()
  13226. swf_rotate()
  13227. swf_scale()
  13228. swf_setfont()
  13229. swf_setframe()
  13230. swf_shapearc()
  13231. swf_shapecurveto3()
  13232. swf_shapecurveto()
  13233. swf_shapefillbitmapclip()
  13234. swf_shapefillbitmaptile()
  13235. swf_shapefilloff()
  13236. swf_shapefillsolid()
  13237. swf_shapelinesolid()
  13238. swf_shapelineto()
  13239. swf_shapemoveto()
  13240. swf_showframe()
  13241. swf_startbutton()
  13242. swf_startdoaction()
  13243. swf_startshape()
  13244. swf_startsymbol()
  13245. swf_textwidth()
  13246. swf_translate()
  13247. swf_viewport()
  13248. snmp_get_quick_print()
  13249. snmp_set_quick_print()
  13250. snmpget()
  13251. snmprealwalk()
  13252. snmpset()
  13253. snmpwalk()
  13254. snmpwalkoid()
  13255. socket_accept()
  13256. socket_bind()
  13257. socket_clear_error()
  13258. socket_close()
  13259. socket_connect()
  13260. socket_create_listen()
  13261. socket_create_pair()
  13262. socket_create()
  13263. socket_get_option()
  13264. socket_getpeername()
  13265. socket_getsockname()
  13266. socket_iovec_add()
  13267. socket_iovec_alloc()
  13268. socket_iovec_delete()
  13269. socket_iovec_fetch()
  13270. socket_iovec_free()
  13271. socket_iovec_set()
  13272. socket_last_error()
  13273. socket_listen()
  13274. socket_read()
  13275. socket_readv()
  13276. socket_recv()
  13277. socket_recvfrom()
  13278. socket_recvmsg()
  13279. socket_select()
  13280. socket_send()
  13281. socket_sendmsg()
  13282. socket_sendto()
  13283. socket_set_block()
  13284. socket_set_nonblock()
  13285. socket_set_option()
  13286. socket_shutdown()
  13287. socket_strerror()
  13288. socket_write()
  13289. socket_writev()
  13290. stream_context_create()
  13291. stream_context_get_options()
  13292. stream_context_set_option()
  13293. stream_context_set_params()
  13294. stream_copy_to_stream()
  13295. stream_filter_append()
  13296. stream_filter_prepend()
  13297. stream_filter_register()
  13298. stream_get_filters()
  13299. stream_get_line()
  13300. stream_get_meta_data()
  13301. stream_get_transports()
  13302. stream_get_wrappers()
  13303. stream_register_wrapper()
  13304. stream_select()
  13305. stream_set_blocking()
  13306. stream_set_timeout()
  13307. stream_set_write_buffer()
  13308. stream_socket_accept()
  13309. stream_socket_client()
  13310. stream_socket_get_name()
  13311. stream_socket_server()
  13312. stream_wrapper_register()
  13313. addcslashes()
  13314. addslashes()
  13315. bin2hex()
  13316. chop()
  13317. chr()
  13318. chunk_split()
  13319. convert_cyr_string()
  13320. count_chars()
  13321. crc32()
  13322. crypt()
  13323. echo()
  13324. explode()
  13325. fprintf()
  13326. get_html_translation_table()
  13327. hebrev()
  13328. hebrevc()
  13329. html_entity_decode()
  13330. htmlentities()
  13331. htmlspecialchars()
  13332. implode()
  13333. join()
  13334. levenshtein()
  13335. localeconv()
  13336. ltrim()
  13337. md5_file()
  13338. md5()
  13339. metaphone()
  13340. money_format()
  13341. nl_langinfo()
  13342. nl2br()
  13343. number_format()
  13344. ord()
  13345. parse_str()
  13346. print()
  13347. printf()
  13348. quoted_printable_decode()
  13349. quotemeta()
  13350. rtrim()
  13351. setlocale()
  13352. sha1_file()
  13353. sha1()
  13354. similar_text()
  13355. soundex()
  13356. sprintf()
  13357. sscanf()
  13358. str_ireplace()
  13359. str_pad()
  13360. str_repeat()
  13361. str_replace()
  13362. str_rot13()
  13363. str_shuffle()
  13364. str_split()
  13365. str_word_count()
  13366. strcasecmp()
  13367. strchr()
  13368. strcmp()
  13369. strcoll()
  13370. strcspn()
  13371. strip_tags()
  13372. stripcslashes()
  13373. stripos()
  13374. stripslashes()
  13375. stristr()
  13376. strlen()
  13377. strnatcasecmp()
  13378. strnatcmp()
  13379. strncasecmp()
  13380. strncmp()
  13381. strpos()
  13382. strrchr()
  13383. strrev()
  13384. strripos()
  13385. strrpos()
  13386. strspn()
  13387. strstr()
  13388. strtok()
  13389. strtolower()
  13390. strtoupper()
  13391. strtr()
  13392. substr_compare()
  13393. substr_count()
  13394. substr_replace()
  13395. substr()
  13396. trim()
  13397. ucfirst()
  13398. ucwords()
  13399. vprintf()
  13400. vsprintf()
  13401. wordwrap()
  13402. sybase_affected_rows()
  13403. sybase_close()
  13404. sybase_connect()
  13405. sybase_data_seek()
  13406. sybase_deadlock_retry_count()
  13407. sybase_fetch_array()
  13408. sybase_fetch_assoc()
  13409. sybase_fetch_field()
  13410. sybase_fetch_object()
  13411. sybase_fetch_row()
  13412. sybase_field_seek()
  13413. sybase_free_result()
  13414. sybase_get_last_message()
  13415. sybase_min_client_severity()
  13416. sybase_min_error_severity()
  13417. sybase_min_message_severity()
  13418. sybase_min_server_severity()
  13419. sybase_num_fields()
  13420. sybase_num_rows()
  13421. sybase_pconnect()
  13422. sybase_query()
  13423. sybase_result()
  13424. sybase_select_db()
  13425. sybase_set_message_handler()
  13426. sybase_unbuffered_query()
  13427. tidy_access_count()
  13428. tidy_clean_repair()
  13429. tidy_config_count()
  13430. tidy_diagnose()
  13431. tidy_error_count()
  13432. tidy_get_body()
  13433. tidy_get_config()
  13434. tidy_get_error_buffer()
  13435. tidy_get_head()
  13436. tidy_get_html_ver()
  13437. tidy_get_html()
  13438. tidy_get_output()
  13439. tidy_get_release()
  13440. tidy_get_root()
  13441. tidy_get_status()
  13442. tidy_getopt()
  13443. tidy_is_xhtml()
  13444. tidy_load_config()
  13445. tidy_parse_file()
  13446. tidy_parse_string()
  13447. tidy_repair_file()
  13448. tidy_repair_string()
  13449. tidy_reset_config()
  13450. tidy_save_config()
  13451. tidy_set_encoding()
  13452. tidy_setopt()
  13453. tidy_warning_count()
  13454. token_get_all()
  13455. token_name()
  13456. base64_decode()
  13457. base64_encode()
  13458. get_meta_tags()
  13459. http_build_query()
  13460. parse_url()
  13461. rawurldecode()
  13462. rawurlencode()
  13463. urldecode()
  13464. urlencode()
  13465. doubleval()
  13466. empty()
  13467. floatval()
  13468. get_defined_vars()
  13469. get_resource_type()
  13470. gettype()
  13471. import_request_variables()
  13472. intval()
  13473. is_array()
  13474. is_bool()
  13475. is_callable()
  13476. is_double()
  13477. is_float()
  13478. is_int()
  13479. is_integer()
  13480. is_long()
  13481. is_null()
  13482. is_numeric()
  13483. is_object()
  13484. is_real()
  13485. is_resource()
  13486. is_scalar()
  13487. is_string()
  13488. isset()
  13489. print_r()
  13490. serialize()
  13491. settype()
  13492. strval()
  13493. unserialize()
  13494. unset()
  13495. var_dump()
  13496. var_export()
  13497. vpopmail_add_alias_domain_ex()
  13498. vpopmail_add_alias_domain()
  13499. vpopmail_add_domain_ex()
  13500. vpopmail_add_domain()
  13501. vpopmail_add_user()
  13502. vpopmail_alias_add()
  13503. vpopmail_alias_del_domain()
  13504. vpopmail_alias_del()
  13505. vpopmail_alias_get_all()
  13506. vpopmail_alias_get()
  13507. vpopmail_auth_user()
  13508. vpopmail_del_domain_ex()
  13509. vpopmail_del_domain()
  13510. vpopmail_del_user()
  13511. vpopmail_error()
  13512. vpopmail_passwd()
  13513. vpopmail_set_user_quota()
  13514. w32api_deftype()
  13515. w32api_init_dtype()
  13516. w32api_invoke_function()
  13517. w32api_register_function()
  13518. w32api_set_call_method()
  13519. wddx_add_vars()
  13520. wddx_deserialize()
  13521. wddx_packet_end()
  13522. wddx_packet_start()
  13523. wddx_serialize_value()
  13524. wddx_serialize_vars()
  13525. utf8_decode()
  13526. utf8_encode()
  13527. xml_error_string()
  13528. xml_get_current_byte_index()
  13529. xml_get_current_column_number()
  13530. xml_get_current_line_number()
  13531. xml_get_error_code()
  13532. xml_parse_into_struct()
  13533. xml_parse()
  13534. xml_parser_create_ns()
  13535. xml_parser_create()
  13536. xml_parser_free()
  13537. xml_parser_get_option()
  13538. xml_parser_set_option()
  13539. xml_set_character_data_handler()
  13540. xml_set_default_handler()
  13541. xml_set_element_handler()
  13542. xml_set_end_namespace_decl_handler()
  13543. xml_set_external_entity_ref_handler()
  13544. xml_set_notation_decl_handler()
  13545. xml_set_object()
  13546. xml_set_processing_instruction_handler()
  13547. xml_set_start_namespace_decl_handler()
  13548. xml_set_unparsed_entity_decl_handler()
  13549. xmlrpc_decode_request()
  13550. xmlrpc_decode()
  13551. xmlrpc_encode_request()
  13552. xmlrpc_encode()
  13553. xmlrpc_get_type()
  13554. xmlrpc_parse_method_descriptions()
  13555. xmlrpc_server_add_introspection_data()
  13556. xmlrpc_server_call_method()
  13557. xmlrpc_server_create()
  13558. xmlrpc_server_destroy()
  13559. xmlrpc_server_register_introspection_callback()
  13560. xmlrpc_server_register_method()
  13561. xmlrpc_set_type()
  13562. xslt_create()
  13563. xslt_errno()
  13564. xslt_error()
  13565. xslt_free()
  13566. xslt_process()
  13567. xslt_set_base()
  13568. xslt_set_encoding()
  13569. xslt_set_error_handler()
  13570. xslt_set_log()
  13571. xslt_set_sax_handler()
  13572. xslt_set_sax_handlers()
  13573. xslt_set_scheme_handler()
  13574. xslt_set_scheme_handlers()
  13575. yaz_addinfo()
  13576. yaz_ccl_conf()
  13577. yaz_ccl_parse()
  13578. yaz_close()
  13579. yaz_connect()
  13580. yaz_database()
  13581. yaz_element()
  13582. yaz_errno()
  13583. yaz_error()
  13584. yaz_get_option()
  13585. yaz_hits()
  13586. yaz_itemorder()
  13587. yaz_present()
  13588. yaz_range()
  13589. yaz_record()
  13590. yaz_scan_result()
  13591. yaz_scan()
  13592. yaz_schema()
  13593. yaz_search()
  13594. yaz_set_option()
  13595. yaz_sort()
  13596. yaz_syntax()
  13597. yaz_wait()
  13598. yp_all()
  13599. yp_cat()
  13600. yp_err_string()
  13601. yp_errno()
  13602. yp_first()
  13603. yp_get_default_domain()
  13604. yp_master()
  13605. yp_match()
  13606. yp_next()
  13607. yp_order()
  13608. zip_close()
  13609. zip_entry_close()
  13610. zip_entry_compressedsize()
  13611. zip_entry_compressionmethod()
  13612. zip_entry_filesize()
  13613. zip_entry_name()
  13614. zip_entry_open()
  13615. zip_entry_read()
  13616. zip_open()
  13617. zip_read()
  13618. gzclose()
  13619. gzcompress()
  13620. gzdeflate()
  13621. gzencode()
  13622. gzeof()
  13623. gzfile()
  13624. gzgetc()
  13625. gzgets()
  13626. gzgetss()
  13627. gzinflate()
  13628. gzopen()
  13629. gzpassthru()
  13630. gzputs()
  13631. gzread()
  13632. gzrewind()
  13633. gzseek()
  13634. gztell()
  13635. gzuncompress()
  13636. gzwrite()
  13637. readgzfile()
  13638. zlib_get_coding_type()
  13639. ;
  13640. ;
  13641. ; -----------------------------------------------------------------------------
  13642. ;  user-defined templates
  13643. ; -----------------------------------------------------------------------------
  13644.